nix: specify explicit branches/refs for flake inputs

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-05-01 23:36:07 -04:00 committed by June
parent cad16b9268
commit 1181a7a7a9
2 changed files with 16 additions and 11 deletions

View File

@ -26,15 +26,16 @@
"complement": { "complement": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1713458251, "lastModified": 1714472853,
"narHash": "sha256-hom/Lt0gZzLWqFhUJG0X2i88CAMIILInO5w0tPj6G3s=", "narHash": "sha256-CNRHSZe3TE+3tFj2dHNyxTMjDqL0MKY3P/3jqUgA7YE=",
"owner": "matrix-org", "owner": "matrix-org",
"repo": "complement", "repo": "complement",
"rev": "d73c81a091604b0fc5b6b0617dcac58c25763f57", "rev": "891d18872c153d39a9ce63b545045efddb845738",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "matrix-org", "owner": "matrix-org",
"ref": "main",
"repo": "complement", "repo": "complement",
"type": "github" "type": "github"
} }
@ -89,15 +90,16 @@
"rust-analyzer-src": "rust-analyzer-src" "rust-analyzer-src": "rust-analyzer-src"
}, },
"locked": { "locked": {
"lastModified": 1713680591, "lastModified": 1714544767,
"narHash": "sha256-3pbv7UgAgetwz9YdjzIT/lZ6Rgj6wj6MR4mphBLyDjU=", "narHash": "sha256-kF1bX+YFMedf1g0PAJYwGUkzh22JmULtj8Rm4IXAQKs=",
"owner": "nix-community", "owner": "nix-community",
"repo": "fenix", "repo": "fenix",
"rev": "19aaa94a73cc670a4d87e84f0909966cd8f8cd79", "rev": "73124e1356bde9411b163d636b39fe4804b7ca45",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "main",
"repo": "fenix", "repo": "fenix",
"type": "github" "type": "github"
} }
@ -130,6 +132,7 @@
}, },
"original": { "original": {
"owner": "edolstra", "owner": "edolstra",
"ref": "master",
"repo": "flake-compat", "repo": "flake-compat",
"type": "github" "type": "github"
} }
@ -163,6 +166,7 @@
}, },
"original": { "original": {
"owner": "numtide", "owner": "numtide",
"ref": "main",
"repo": "flake-utils", "repo": "flake-utils",
"type": "github" "type": "github"
} }
@ -178,6 +182,7 @@
}, },
"original": { "original": {
"owner": "numtide", "owner": "numtide",
"ref": "main",
"repo": "nix-filter", "repo": "nix-filter",
"type": "github" "type": "github"
} }

View File

@ -1,12 +1,12 @@
{ {
inputs = { inputs = {
attic.url = "github:zhaofengli/attic?ref=main"; attic.url = "github:zhaofengli/attic?ref=main";
complement = { url = "github:matrix-org/complement"; flake = false; }; complement = { url = "github:matrix-org/complement?ref=main"; flake = false; };
crane = { url = "github:ipetkov/crane?ref=master"; inputs.nixpkgs.follows = "nixpkgs"; }; crane = { url = "github:ipetkov/crane?ref=master"; inputs.nixpkgs.follows = "nixpkgs"; };
fenix = { url = "github:nix-community/fenix"; inputs.nixpkgs.follows = "nixpkgs"; }; fenix = { url = "github:nix-community/fenix?ref=main"; inputs.nixpkgs.follows = "nixpkgs"; };
flake-compat = { url = "github:edolstra/flake-compat"; flake = false; }; flake-compat = { url = "github:edolstra/flake-compat?ref=master"; flake = false; };
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils?ref=main";
nix-filter.url = "github:numtide/nix-filter"; nix-filter.url = "github:numtide/nix-filter?ref=main";
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable"; nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
rocksdb = { url = "github:facebook/rocksdb?ref=v9.1.1"; flake = false; }; rocksdb = { url = "github:facebook/rocksdb?ref=v9.1.1"; flake = false; };
}; };