about summary refs log tree commit diff
path: root/pkgs/tools/misc/fortune
diff options
context:
space:
mode:
authorVonfry <mail@vonfry.name>2021-12-16 08:27:43 +0800
committerVonfry <mail@vonfry.name>2021-12-16 08:33:31 +0800
commit29f809f3cba8d450e57e2cebdd5bb6684fce2a2c (patch)
tree19aa6646497b6e7b2361b331436a5cee5a73780e /pkgs/tools/misc/fortune
parent6c2318e451fc0eaf338fb461d9bfcc99869de758 (diff)
fortune: 3.8.0 -> 3.10.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 4c230b2dab74e..aa18409525d29 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.8.0";
+  version = "3.10.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 = "sha256-HXQYYWZhfYIT7wEr9FAymaQWEfg0DcaWT0z7yvcZ+BI=";
+    sha256 = "sha256-DR73JXpOkpaOsymP9nxAklCxdoxAnjL1GeNF6D/tDTc=";
   };
 
   nativeBuildInputs = [ cmake perl ];