diff options
author | lassulus <lass@lassul.us> | 2017-06-24 16:40:49 +0200 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-06-24 16:40:49 +0200 |
commit | 13de8c6bd2816bd0cd66433be93168720ce59d55 (patch) | |
tree | b1cf97e54797643688b627e331e2515cf22fd57e /lass/1systems | |
parent | ea2cd88ed355aa58e527cac6b3dcd7e3c524e730 (diff) |
l: set symlinkJoin pkgs in correct order
Diffstat (limited to 'lass/1systems')
-rw-r--r-- | lass/1systems/iso.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lass/1systems/iso.nix b/lass/1systems/iso.nix index 8b2e82d31..b45d5b228 100644 --- a/lass/1systems/iso.nix +++ b/lass/1systems/iso.nix @@ -21,7 +21,6 @@ with import <stockholm/lib>; coreutils = pkgs.symlinkJoin { name = "coreutils-hack"; paths = [ - pkgs.coreutils (pkgs.writeDashBin "tee" '' if test "$1" = /dev/stderr; then while read -r line; do @@ -32,6 +31,7 @@ with import <stockholm/lib>; ${super.coreutils}/bin/tee "$@" fi '') + pkgs.coreutils ]; }; }; |