about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-05-24 14:33:34 -0500
committerGitHub <noreply@github.com>2020-05-24 14:33:34 -0500
commita14e831699e5ac63ddbcbe6725e82fb2f85723df (patch)
tree8e16423befc3d8eae04910eb97b1edf4c173dfca /pkgs/applications
parenteceb2a0f9dc4a7dbb6c2885855d864e6a1b79b1f (diff)
parent32ca1489dd343f01b8f18ad2970ccfe3ce8d0a93 (diff)
Merge pull request #88796 from r-ryantm/auto-update/cheat
cheat: 3.10.0 -> 3.10.1
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/cheat/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/misc/cheat/default.nix b/pkgs/applications/misc/cheat/default.nix
index 3a8aea913cafd..ec4d71a0dce8e 100644
--- a/pkgs/applications/misc/cheat/default.nix
+++ b/pkgs/applications/misc/cheat/default.nix
@@ -3,13 +3,13 @@
 
 buildGoModule rec {
   pname = "cheat";
-  version = "3.10.0";
+  version = "3.10.1";
 
   src = fetchFromGitHub {
     owner = "cheat";
     repo = "cheat";
     rev = version;
-    sha256 = "1rrhll1i5ibxdchpdifajvsm697pilf82rbq7arn4f4pw5izrhy6";
+    sha256 = "0indvycj972wng979mvia8mrb7bwdfay7wxq3lnj05qyxqafj5h2";
   };
 
   subPackages = [ "cmd/cheat" ];
@@ -17,6 +17,7 @@ buildGoModule rec {
   nativeBuildInputs = [ installShellFiles ];
 
   postInstall = ''
+    installManPage doc/cheat.1
     installShellCompletion scripts/cheat.{bash,fish,zsh}
   '';