summary refs log tree commit diff stats
path: root/user/packages
diff options
context:
space:
mode:
Diffstat (limited to 'user/packages')
-rw-r--r--user/packages/command-help/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/user/packages/command-help/default.nix b/user/packages/command-help/default.nix
deleted file mode 100644
index c3a22e6c..00000000
--- a/user/packages/command-help/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ stdenv, fetchFromGitHub, bash, gawk }:
-
-let
-  version = "2020-10-23";
-in
-stdenv.mkDerivation
-rec
-{
-  name = "command-help-unstable";
-  src = fetchFromGitHub {
-    owner = "learnbyexample";
-    repo = "command_help";
-    sha256 = "1iyi7jivd0lan1f0w6ng4x6n61i3vsz0ls31xjnza3sqmzwld3s8";
-    rev = "ee0b862a7b2fc70729d69d28e6a96c42b37b9fd3";
-    # date = 2020-10-23T11:42:04+05:30;
-  };
-
-  dontBuild = true;
-
-  installPhase = ''
-    mkdir -p $out/bin/
-    cat <<EOF >$out/bin/ch
-    #!${bash}/bin/bash
-    PATH=${stdenv.lib.makeBinPath [gawk]}:\$PATH
-    set -eo
-    EOF
-    cat ch >> $out/bin/ch
-    chmod +x $out/bin/ch
-  '';
-}