diff options
author | lassulus <lass@lassul.us> | 2017-06-15 20:02:20 +0200 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-06-15 20:02:20 +0200 |
commit | fde07d4e5ed92309ca1c7570c936ec3d324ca2f3 (patch) | |
tree | c65814c4caecab5bf833dca05477e622c86b93d5 /krebs/5pkgs/simple/whatsupnix/default.nix | |
parent | e0f2449d526ba0f6a5bb8feebb8ca67bbc822554 (diff) | |
parent | ea468604d36257d182580d689035379b7ff8d78e (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'krebs/5pkgs/simple/whatsupnix/default.nix')
-rw-r--r-- | krebs/5pkgs/simple/whatsupnix/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/krebs/5pkgs/simple/whatsupnix/default.nix b/krebs/5pkgs/simple/whatsupnix/default.nix index 1a108c5e9..62ef597c8 100644 --- a/krebs/5pkgs/simple/whatsupnix/default.nix +++ b/krebs/5pkgs/simple/whatsupnix/default.nix @@ -1,4 +1,4 @@ -{ bash, coreutils, gawk, nix, makeWrapper, stdenv }: +{ bash, coreutils, gawk, makeWrapper, nix, openssh, stdenv }: stdenv.mkDerivation { name = "whatsupnix"; @@ -8,7 +8,7 @@ stdenv.mkDerivation { mkdir -p $out/bin cat - ${./whatsupnix.bash} > $out/bin/whatsupnix <<\EOF #! ${bash}/bin/bash - export PATH=${stdenv.lib.makeBinPath [ coreutils gawk nix ]} + export PATH=${stdenv.lib.makeBinPath [ coreutils gawk nix openssh ]} EOF chmod +x $out/bin/whatsupnix ''; |