specify ref for all flake inputs

This commit is contained in:
Charles Hall 2024-04-30 14:42:54 -07:00
parent b7df5a7da6
commit 81d85153e9
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
2 changed files with 8 additions and 4 deletions

4
flake.lock generated
View file

@ -82,6 +82,7 @@
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "main",
"repo": "fenix", "repo": "fenix",
"type": "github" "type": "github"
} }
@ -114,6 +115,7 @@
}, },
"original": { "original": {
"owner": "edolstra", "owner": "edolstra",
"ref": "master",
"repo": "flake-compat", "repo": "flake-compat",
"type": "github" "type": "github"
} }
@ -147,6 +149,7 @@
}, },
"original": { "original": {
"owner": "numtide", "owner": "numtide",
"ref": "main",
"repo": "flake-utils", "repo": "flake-utils",
"type": "github" "type": "github"
} }
@ -162,6 +165,7 @@
}, },
"original": { "original": {
"owner": "numtide", "owner": "numtide",
"ref": "main",
"repo": "nix-filter", "repo": "nix-filter",
"type": "github" "type": "github"
} }

View file

@ -1,15 +1,15 @@
{ {
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable"; nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
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";
flake-compat = { flake-compat = {
url = "github:edolstra/flake-compat"; url = "github:edolstra/flake-compat?ref=master";
flake = false; flake = false;
}; };
fenix = { fenix = {
url = "github:nix-community/fenix"; url = "github:nix-community/fenix?ref=main";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
crane = { crane = {