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" "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": { "bevy-mandelbrot": {
"inputs": { "inputs": {
"naersk": [ "naersk": [
@ -589,6 +615,7 @@
"root": { "root": {
"inputs": { "inputs": {
"affection-src": "affection-src", "affection-src": "affection-src",
"bevy-julia": "bevy-julia",
"bevy-mandelbrot": "bevy-mandelbrot", "bevy-mandelbrot": "bevy-mandelbrot",
"eris": "eris", "eris": "eris",
"fenix": "fenix", "fenix": "fenix",

View File

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

View File

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

View File

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

View File

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

View File

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