mirror of
https://git.sr.ht/~anthonycicc/advent_of_code_2023
synced 2025-04-09 03:32:23 -04:00
update flakes, add justfile
This commit is contained in:
parent
e6f5ad7462
commit
f085be1244
3 changed files with 6 additions and 4 deletions
4
flake.lock
generated
4
flake.lock
generated
|
@ -32,7 +32,7 @@
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"type": "tarball",
|
"type": "tarball",
|
||||||
"url": "https://flakehub.com/f/ipetkov/crane/0.15.0.tar.gz"
|
"url": "https://flakehub.com/f/ipetkov/crane/0.15.1.tar.gz"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"fenix": {
|
"fenix": {
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"type": "tarball",
|
"type": "tarball",
|
||||||
"url": "https://flakehub.com/f/nix-community/fenix/0.1.1653.tar.gz"
|
"url": "https://flakehub.com/f/nix-community/fenix/%2A.tar.gz"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flake-utils": {
|
"flake-utils": {
|
||||||
|
|
|
@ -5,12 +5,12 @@
|
||||||
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.0.tar.gz";
|
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.0.tar.gz";
|
||||||
|
|
||||||
crane = {
|
crane = {
|
||||||
url = "https://flakehub.com/f/ipetkov/crane/0.15.0.tar.gz";
|
url = "https://flakehub.com/f/ipetkov/crane/0.15.1.tar.gz";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
fenix = {
|
fenix = {
|
||||||
url = "https://flakehub.com/f/nix-community/fenix/0.1.1653.tar.gz";
|
url = "https://flakehub.com/f/nix-community/fenix/*.tar.gz";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
inputs.rust-analyzer-src.follows = "";
|
inputs.rust-analyzer-src.follows = "";
|
||||||
};
|
};
|
||||||
|
|
2
justfile
Normal file
2
justfile
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
check:
|
||||||
|
env NIXPKGS_ALLOW_BROKEN=1 nix flake check --impure
|
Loading…
Add table
Reference in a new issue