diff options
author | lassulus <lass@blue.r> | 2018-10-07 17:08:01 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-10-08 23:26:05 +0200 |
commit | 90b2cb7bd975eadca9356f5bfe446bfac241f87b (patch) | |
tree | 94d67d61bd0244c38cb98c8e398a2bb552b3e04a | |
parent | 94a074f7c3f696a93a497177a4c134cb0fc70342 (diff) |
krops: import from submodules
-rw-r--r-- | krebs/krops.nix | 5 | ||||
-rw-r--r-- | makefu/krops.nix | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/krebs/krops.nix b/krebs/krops.nix index 864cc8066..89354c1ea 100644 --- a/krebs/krops.nix +++ b/krebs/krops.nix @@ -1,9 +1,6 @@ { name }: rec { - krops = builtins.fetchGit { - url = https://cgit.krebsco.de/krops/; - rev = "c46166d407c7d246112f13346621a3fbdb25889e"; - }; + krops = ../submodules/krops; lib = import "${krops}/lib"; diff --git a/makefu/krops.nix b/makefu/krops.nix index ddb4afece..4f55915af 100644 --- a/makefu/krops.nix +++ b/makefu/krops.nix @@ -1,8 +1,5 @@ { config ? config, name, target ? name }: let - krops = builtins.fetchGit { - url = https://cgit.krebsco.de/krops/; - rev = "4e466eaf05861b47365c5ef46a31a188b70f3615"; - }; + krops = ../submodules/krops; nixpkgs-src = lib.importJSON ./nixpkgs.json; lib = import "${krops}/lib"; |