about summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-06-03 17:04:42 +0200
committerGitHub <noreply@github.com>2021-06-03 17:04:42 +0200
commit71ac9a794c3d15af52d1fc156e8beba11e19afbd (patch)
treee883feb61c2730eb94fc82594f79fb8e128f5563 /pkgs/tools/misc
parent10b21c59b33269be380c51087b22d050162d6b2a (diff)
parent3a78e24a522d11835b69d31c93962b353b0e91ec (diff)
downloadnixlib-71ac9a794c3d15af52d1fc156e8beba11e19afbd.tar
nixlib-71ac9a794c3d15af52d1fc156e8beba11e19afbd.tar.gz
nixlib-71ac9a794c3d15af52d1fc156e8beba11e19afbd.tar.bz2
nixlib-71ac9a794c3d15af52d1fc156e8beba11e19afbd.tar.lz
nixlib-71ac9a794c3d15af52d1fc156e8beba11e19afbd.tar.xz
nixlib-71ac9a794c3d15af52d1fc156e8beba11e19afbd.tar.zst
nixlib-71ac9a794c3d15af52d1fc156e8beba11e19afbd.zip
Merge pull request #125168 from Vonfry/update/fortune
fortune: 3.4.1 -> 3.6.1
Diffstat (limited to 'pkgs/tools/misc')
-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 cbb5eae84877..350e28428d4b 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.4.1";
+  version = "3.6.1";
 
   # 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 = "02hjf432mq5qpbf1hywid7b356jys5n9brrrmm6z6r05jpzybbg3";
+    sha256 = "1cw7xf9xhh6d73y4h4q57g6akjhc1gq6xv37k57sx0wx77wjxqdp";
   };
 
   nativeBuildInputs = [ cmake perl ];