Dedupe flake-utils

This commit is contained in:
Sandro - 2022-09-17 17:52:56 +02:00
parent 6121d9cd59
commit eac0873ddb
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 13 additions and 37 deletions

View File

@ -2,7 +2,9 @@
"nodes": { "nodes": {
"affection-src": { "affection-src": {
"inputs": { "inputs": {
"flake-utils": "flake-utils", "flake-utils": [
"flake-utils"
],
"nixpkgs": [ "nixpkgs": [
"nixos" "nixos"
] ]
@ -129,36 +131,6 @@
"type": "github" "type": "github"
} }
}, },
"flake-utils_2": {
"locked": {
"lastModified": 1659877975,
"narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"flake-utils_3": {
"locked": {
"lastModified": 1656928814,
"narHash": "sha256-RIFfgBuKz6Hp89yRr7+NR5tzIAbn52h8vT6vXkYjZoM=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "7e2a3b3dfd9af950a856d66b0a7d01e3c18aa249",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"heliwatch": { "heliwatch": {
"inputs": { "inputs": {
"fenix": [ "fenix": [
@ -649,7 +621,7 @@
"bevy-mandelbrot": "bevy-mandelbrot", "bevy-mandelbrot": "bevy-mandelbrot",
"eris": "eris", "eris": "eris",
"fenix": "fenix", "fenix": "fenix",
"flake-utils": "flake-utils_2", "flake-utils": "flake-utils",
"heliwatch": "heliwatch", "heliwatch": "heliwatch",
"hydra": "hydra", "hydra": "hydra",
"hydra-ca": "hydra-ca", "hydra-ca": "hydra-ca",
@ -695,7 +667,9 @@
}, },
"rust-overlay": { "rust-overlay": {
"inputs": { "inputs": {
"flake-utils": "flake-utils_3", "flake-utils": [
"flake-utils"
],
"nixpkgs": [ "nixpkgs": [
"nixos" "nixos"
] ]

View File

@ -11,16 +11,15 @@
url = "git+https://gitea.nek0.eu/nek0/affection"; url = "git+https://gitea.nek0.eu/nek0/affection";
inputs = { inputs = {
nixpkgs.follows = "nixos"; nixpkgs.follows = "nixos";
utils.follows = "flake-utils"; flake-utils.follows = "flake-utils";
}; };
}; };
bevy-mandelbrot = { bevy-mandelbrot = {
# url = "github:matelab/bevy_mandelbrot"; # url = "github:matelab/bevy_mandelbrot";
url = "git+https://gitea.c3d2.de/astro/bevy-mandelbrot.git?ref=main"; url = "git+https://gitea.c3d2.de/astro/bevy-mandelbrot.git?ref=main";
inputs = { inputs = {
nixpkgs.follows = "nixos";
naersk.follows = "naersk"; naersk.follows = "naersk";
naersk.inputs.nixpkgs.follows = "nixpkgs"; nixpkgs.follows = "nixos";
rust-overlay.follows = "rust-overlay"; rust-overlay.follows = "rust-overlay";
}; };
}; };
@ -63,7 +62,9 @@
}; };
naersk = { naersk = {
url = "github:nix-community/naersk"; url = "github:nix-community/naersk";
inputs.nixpkgs.follows = "nixos"; inputs = {
nixpkgs.follows = "nixos";
};
}; };
oparl-scraper = { oparl-scraper = {
url = "github:offenesdresden/ratsinfo-scraper/oparl"; url = "github:offenesdresden/ratsinfo-scraper/oparl";
@ -86,6 +87,7 @@
rust-overlay = { rust-overlay = {
url = "github:oxalica/rust-overlay"; url = "github:oxalica/rust-overlay";
inputs = { inputs = {
flake-utils.follows = "flake-utils";
nixpkgs.follows = "nixos"; nixpkgs.follows = "nixos";
}; };
}; };