diff options
author | tv <tv@krebsco.de> | 2017-05-16 23:30:09 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-05-16 23:30:09 +0200 |
commit | 015649b9b32c39d1f1c90ebba8d9aadb733ba8b8 (patch) | |
tree | 1a26b3bd45f8bde685b69364d92e9eece6f87604 /krebs/5pkgs/whatsupnix/default.nix | |
parent | 66f9170f524a1a59ba7b69b2fc778c99ccbd41ff (diff) |
whatsupnix: init
Import from https://github.com/NixOS/nix/issues/443#issuecomment-296752535
Diffstat (limited to 'krebs/5pkgs/whatsupnix/default.nix')
-rw-r--r-- | krebs/5pkgs/whatsupnix/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/krebs/5pkgs/whatsupnix/default.nix b/krebs/5pkgs/whatsupnix/default.nix new file mode 100644 index 000000000..1a108c5e9 --- /dev/null +++ b/krebs/5pkgs/whatsupnix/default.nix @@ -0,0 +1,15 @@ +{ bash, coreutils, gawk, nix, makeWrapper, stdenv }: + +stdenv.mkDerivation { + name = "whatsupnix"; + phases = [ "installPhase" ]; + nativeBuildInputs = [ makeWrapper ]; + installPhase = '' + mkdir -p $out/bin + cat - ${./whatsupnix.bash} > $out/bin/whatsupnix <<\EOF + #! ${bash}/bin/bash + export PATH=${stdenv.lib.makeBinPath [ coreutils gawk nix ]} + EOF + chmod +x $out/bin/whatsupnix + ''; +} |