1
0
Fork 0

dacbert, glotzbert, rpi-netboot: add bevy_julia

This commit is contained in:
Astro 2022-09-17 01:27:35 +02:00
parent 3a85bcf059
commit 989ef10dbf
6 changed files with 42 additions and 1 deletions

View File

@ -21,6 +21,32 @@
"url": "https://gitea.nek0.eu/nek0/affection"
}
},
"bevy-julia": {
"inputs": {
"naersk": [
"naersk"
],
"nixpkgs": [
"nixos"
],
"rust-overlay": [
"rust-overlay"
]
},
"locked": {
"lastModified": 1663370480,
"narHash": "sha256-fCC/ukecfQZx8M3gNgQ2LCJAXWFIW3uXF7X19oSAVJc=",
"owner": "matelab",
"repo": "bevy_julia",
"rev": "6ced0d32cd785d206acdf97f0bde7fb50583b4e5",
"type": "github"
},
"original": {
"owner": "matelab",
"repo": "bevy_julia",
"type": "github"
}
},
"bevy-mandelbrot": {
"inputs": {
"naersk": [
@ -589,6 +615,7 @@
"root": {
"inputs": {
"affection-src": "affection-src",
"bevy-julia": "bevy-julia",
"bevy-mandelbrot": "bevy-mandelbrot",
"eris": "eris",
"fenix": "fenix",

View File

@ -24,6 +24,15 @@
rust-overlay.follows = "rust-overlay";
};
};
bevy-julia = {
url = "github:matelab/bevy_julia";
inputs = {
nixpkgs.follows = "nixos";
naersk.follows = "naersk";
naersk.inputs.nixpkgs.follows = "nixpkgs";
rust-overlay.follows = "rust-overlay";
};
};
eris = {
url = "git+https://codeberg.org/eris/nix-eris";
inputs.nixpkgs.follows = "nixos";
@ -190,7 +199,7 @@
in {
overlay = import ./overlay {
inherit nixos-unstable;
inherit (inputs) tracer bevy-mandelbrot;
inherit (inputs) tracer bevy-mandelbrot bevy-julia;
};
legacyPackages = lib.attrsets.mapAttrs (system: pkgs:

View File

@ -96,6 +96,7 @@
pavucontrol
glxinfo
tracer-game
bevy_julia
bevy_mandelbrot
allcolors
];

View File

@ -48,6 +48,7 @@
mpv
kodi
tracer-game
bevy_julia
bevy_mandelbrot
allcolors
];

View File

@ -67,6 +67,7 @@
pavucontrol
glxinfo
tracer-game
bevy_julia
bevy_mandelbrot
allcolors
];

View File

@ -1,5 +1,6 @@
{ nixos-unstable
, tracer
, bevy-julia
, bevy-mandelbrot
}:
@ -40,6 +41,7 @@ with final; {
}) ];
};
inherit (bevy-julia.packages.${system}) bevy_julia;
inherit (bevy-mandelbrot.packages.${system}) bevy_mandelbrot;
bmxd = callPackage ./bmxd.nix { };