about summary refs log tree commit diff
path: root/pkgs/tools/misc/cht.sh
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2021-02-11 15:52:25 +0100
committerFrancesco Gazzetta <fgaz@fgaz.me>2021-02-11 15:52:25 +0100
commit767c7a4e09f44402dc26ac5e8d7917d179db3e7b (patch)
tree3dabb2973ff80d437bf9b48cf0f2e41182d6f889 /pkgs/tools/misc/cht.sh
parent93498b15264bb796d4ff3a08971b96847cdd9391 (diff)
cht-sh: fix unstableGitUpdater call
It couldn't get the url from the fetchFromGitHub attrset
Diffstat (limited to 'pkgs/tools/misc/cht.sh')
-rw-r--r--pkgs/tools/misc/cht.sh/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/misc/cht.sh/default.nix b/pkgs/tools/misc/cht.sh/default.nix
index 3f2218ac871db..83961516f60d8 100644
--- a/pkgs/tools/misc/cht.sh/default.nix
+++ b/pkgs/tools/misc/cht.sh/default.nix
@@ -36,7 +36,9 @@ stdenv.mkDerivation {
       --prefix PATH : "${lib.makeBinPath [ curl rlwrap ncurses xsel ]}"
   '';
 
-  passthru.updateScript = unstableGitUpdater { };
+  passthru.updateScript = unstableGitUpdater {
+    url = "https://github.com/chubin/cheat.sh.git";
+  };
 
   meta = with lib; {
     description = "CLI client for cheat.sh, a community driven cheat sheet";