summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/whatsupnix/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'krebs/5pkgs/whatsupnix/default.nix')
-rw-r--r--krebs/5pkgs/whatsupnix/default.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/krebs/5pkgs/whatsupnix/default.nix b/krebs/5pkgs/whatsupnix/default.nix
deleted file mode 100644
index 1a108c5e9..000000000
--- a/krebs/5pkgs/whatsupnix/default.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ 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
- '';
-}