about summary refs log tree commit diff
path: root/pkgs/tools/misc/fortune
diff options
context:
space:
mode:
authorVonfry <mail@vonfry.name>2021-12-15 08:18:47 +0800
committerVonfry <mail@vonfry.name>2021-12-15 08:21:02 +0800
commit5f6277fdf2b8593b3fb9ed9a355411350de8f065 (patch)
tree374abe57370e5a355821694796335cd6746a9aed /pkgs/tools/misc/fortune
parentf2d205ca02d34fbf4a125f74f3205634b1cbcedc (diff)
fortune: 3.6.1 -> 3.8.0
Diffstat (limited to 'pkgs/tools/misc/fortune')
-rw-r--r--pkgs/tools/misc/fortune/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/fortune/default.nix b/pkgs/tools/misc/fortune/default.nix
index 6f77c54e30b46..4c230b2dab74e 100644
--- a/pkgs/tools/misc/fortune/default.nix
+++ b/pkgs/tools/misc/fortune/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "fortune-mod";
-  version = "3.6.1";
+  version = "3.8.0";
 
   # We use fetchurl instead of fetchFromGitHub because the release pack has some
   # special files.
   src = fetchurl {
     url = "https://github.com/shlomif/fortune-mod/releases/download/${pname}-${version}/${pname}-${version}.tar.xz";
-    sha256 = "1cw7xf9xhh6d73y4h4q57g6akjhc1gq6xv37k57sx0wx77wjxqdp";
+    sha256 = "sha256-HXQYYWZhfYIT7wEr9FAymaQWEfg0DcaWT0z7yvcZ+BI=";
   };
 
   nativeBuildInputs = [ cmake perl ];