about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-07-15 20:15:33 -0500
committerGitHub <noreply@github.com>2019-07-15 20:15:33 -0500
commit19a77377842cb89a143a4450e33ae2313700015c (patch)
tree6115c1990936bb1335646d77c3cdbfd8ec2df3cd /pkgs
parentee1231890d0d03536953a66f7cf8ee99ae4db9a6 (diff)
parentaaa71375edc23c5a14794c6a927a349e065211e6 (diff)
downloadnixlib-19a77377842cb89a143a4450e33ae2313700015c.tar
nixlib-19a77377842cb89a143a4450e33ae2313700015c.tar.gz
nixlib-19a77377842cb89a143a4450e33ae2313700015c.tar.bz2
nixlib-19a77377842cb89a143a4450e33ae2313700015c.tar.lz
nixlib-19a77377842cb89a143a4450e33ae2313700015c.tar.xz
nixlib-19a77377842cb89a143a4450e33ae2313700015c.tar.zst
nixlib-19a77377842cb89a143a4450e33ae2313700015c.zip
Merge pull request #64800 from r-ryantm/auto-update/fossil
fossil: 2.8 -> 2.9
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/version-management/fossil/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/version-management/fossil/default.nix b/pkgs/applications/version-management/fossil/default.nix
index d0f79600e8ce..d4b60a4f5386 100644
--- a/pkgs/applications/version-management/fossil/default.nix
+++ b/pkgs/applications/version-management/fossil/default.nix
@@ -5,7 +5,7 @@
 
 stdenv.mkDerivation rec {
   name = "fossil-${version}";
-  version = "2.8";
+  version = "2.9";
 
   src = fetchurl {
     urls =
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
         "https://www.fossil-scm.org/index.html/uv/fossil-src-${version}.tar.gz"
       ];
     name = "${name}.tar.gz";
-    sha256 = "0pbinf8d2kj1j7niblhzjd2l2khg6r2pn2xvig6gavz27p3vwcka";
+    sha256 = "0kwb7pkp7y2my916rhyl6kmcf0fk8gkzaxzy13hfgqs35nlsvchw";
   };
 
   buildInputs = [ zlib openssl readline sqlite which ed ]