about summary refs log tree commit diff
path: root/pkgs/tools/misc/fortune
diff options
context:
space:
mode:
authorVonfry <mail@vonfry.name>2022-05-08 09:49:21 +0800
committerVonfry <mail@vonfry.name>2022-05-09 09:02:30 +0800
commitd5cdae6c5da043dbf5c58c2b5243cf3c7f7c3e50 (patch)
tree3fae57f3a47d3ff7dd97cfe23a5c80d27778aefd /pkgs/tools/misc/fortune
parentbf09f6c83afefd3c2dae00eeec0802644ceb7456 (diff)
fortune: 3.12.0 -> 3.14.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 b4778cd1acb9d..9cab0bc2237d5 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.12.0";
+  version = "3.14.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-fVrtfLmZiVDTSeuoOltX/vunGSizSw+ZhQhBn9t0C3E=";
+    sha256 = "sha256-jjBxCfjLjnhdKeMgJwEPytCVKQ4R4wHeF8/3Z/F6UgQ=";
   };
 
   nativeBuildInputs = [ cmake perl ];