diff options
author | Jörg Thalheim <joerg@thalheim.io> | 2020-02-17 17:40:50 +0000 |
---|---|---|
committer | Jörg Thalheim <joerg@thalheim.io> | 2020-02-17 18:05:48 +0000 |
commit | d51f353cb3ca667957e05699e4f250c9cd4d0882 (patch) | |
tree | 0a111953df144e407b13c59a5512e87391083931 /pkgs/default.nix | |
parent | f1b7112ac3cbe090e96f2c82c525b6db69b82034 (diff) |
use writers from nixpkgs
This makes the evaluation of krops pure (no import from derivation)
and makes it faster since the fetchGit result might be garbage collected.
Diffstat (limited to 'pkgs/default.nix')
-rw-r--r-- | pkgs/default.nix | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 682b6b4..76c7f11 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,15 +1,7 @@ { overlays ? [], ... }@args: -let - nix-writers = builtins.fetchGit { - url = https://cgit.krebsco.de/nix-writers/; - rev = "c528cf970e292790b414b4c1c8c8e9d7e73b2a71"; - }; -in - import <nixpkgs> (args // { overlays = [ (import ./overlay.nix) - (import "${nix-writers}/pkgs") ] ++ overlays; }) |