fix infinite recursion on current nixpkgs-unstable, update hyperhive

This commit is contained in:
müde 2026-07-01 20:01:53 +02:00
commit f5186b4d28
2 changed files with 8 additions and 12 deletions

17
flake.lock generated
View file

@ -372,19 +372,16 @@
"nixpkgs": [ "nixpkgs": [
"nixpkgs" "nixpkgs"
], ],
"nixpkgs-unstable": [
"nixpkgs-unstable"
],
"treefmt-nix": [ "treefmt-nix": [
"treefmt-nix" "treefmt-nix"
] ]
}, },
"locked": { "locked": {
"lastModified": 1782751302, "lastModified": 1782927205,
"narHash": "sha256-tLcfE+pLZWnAoa/VWdFCnSKVLbVOuaRozlUnkssx7ac=", "narHash": "sha256-mEVguvW2a9UzLAusuVvZFt6tvOVHor/kOeQziRcLE0c=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "621ee66133831158329981b498b50b4342ed4339", "rev": "ebb85e6291f1ac38dc893bac9b62c1018db9cb8b",
"revCount": 2237, "revCount": 2254,
"type": "git", "type": "git",
"url": "https://forge.darkest.space/hyperhive/hyperhive.git" "url": "https://forge.darkest.space/hyperhive/hyperhive.git"
}, },
@ -676,11 +673,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1780930886, "lastModified": 1782821651,
"narHash": "sha256-rppURzHviaQN131F+nLiLdGfcb0uCd9gGP0E5+iw9MI=", "narHash": "sha256-D5jO0ME1lA9bDHnd5kVawBwItG/N4oZr3FlXmMzLec8=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8c3cede7ddc26bd659d2d383b5610efbd2c7a16e", "rev": "e52c192be9d7b2c4bd4aed326c8731b35f8bb75c",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -17,7 +17,6 @@
url = "git+https://forge.darkest.space/hyperhive/hyperhive.git"; url = "git+https://forge.darkest.space/hyperhive/hyperhive.git";
inputs = { inputs = {
nixpkgs.follows = "nixpkgs"; nixpkgs.follows = "nixpkgs";
nixpkgs-unstable.follows = "nixpkgs-unstable";
treefmt-nix.follows = "treefmt-nix"; treefmt-nix.follows = "treefmt-nix";
}; };
}; };
@ -160,7 +159,7 @@
overlays = { overlays = {
unstable = final: prev: { unstable = final: prev: {
unstable = import nixpkgs-unstable { unstable = import nixpkgs-unstable {
localSystem = prev.stdenv.hostPlatform; inherit (prev.stdenv.hostPlatform) system;
inherit (prev) config; inherit (prev) config;
}; };
}; };