summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-09-07 18:06:46 -0400
committerseth <[email protected]>2023-09-07 18:06:46 -0400
commit8792285b18a71d6099066106dbf992c8e9fe10ba (patch)
tree9585dddee7482f72711fbdfff3d8231f0592155d /flake.nix
parent989bc1292a4710a0e43690ae3ade4b53692b8978 (diff)
flake: dedup rust-overlay & crane
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 6d032f0..01dc229 100644
--- a/flake.nix
+++ b/flake.nix
@@ -30,6 +30,15 @@
inputs.flake-utils.follows = "flake-utils";
};
+ # ditto
+ crane = {
+ url = "github:ipetkov/crane";
+ inputs.nixpkgs.follows = "nixpkgs";
+ inputs.flake-compat.follows = "flake-compat";
+ inputs.flake-utils.follows = "flake-utils";
+ inputs.rust-overlay.follows = "rust-overlay";
+ };
+
deploy = {
url = "github:serokell/deploy-rs";
inputs.nixpkgs.follows = "nixpkgs";
@@ -72,10 +81,12 @@
lanzaboote = {
url = "github:nix-community/lanzaboote";
inputs.nixpkgs.follows = "nixpkgs";
+ inputs.crane.follows = "crane";
inputs.flake-compat.follows = "flake-compat";
inputs.flake-parts.follows = "parts";
inputs.flake-utils.follows = "flake-utils";
inputs.pre-commit-hooks-nix.follows = "pre-commit";
+ inputs.rust-overlay.follows = "rust-overlay";
};
nix-index-database = {
@@ -109,6 +120,15 @@
url = "github:yaxitech/ragenix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.agenix.follows = "agenix";
+ inputs.crane.follows = "crane";
+ inputs.flake-utils.follows = "flake-utils";
+ inputs.rust-overlay.follows = "rust-overlay";
+ };
+
+ # ditto
+ rust-overlay = {
+ url = "github:oxalica/rust-overlay";
+ inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
};