diff options
author | Alan Pearce | 2021-04-01 15:21:09 +0200 |
---|---|---|
committer | Alan Pearce | 2021-04-01 15:21:09 +0200 |
commit | 0d51f26fe479443848181e20e45c236768132ffd (patch) | |
tree | f502ea3736fdd18dbefa911c563a19656153180e /user/packages/command-help | |
parent | 637c2437f01775fa0f10b5bac451e3b949d47077 (diff) | |
download | nixfiles-0d51f26fe479443848181e20e45c236768132ffd.tar.lz nixfiles-0d51f26fe479443848181e20e45c236768132ffd.tar.zst nixfiles-0d51f26fe479443848181e20e45c236768132ffd.zip |
Remove command-help
Unused, doesn't work properly on macOS anyway
Diffstat (limited to 'user/packages/command-help')
-rw-r--r-- | user/packages/command-help/default.nix | 30 |
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 - ''; -} |