summary refs log tree commit diff
path: root/pkgs/development/libraries/libzdb
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-08 23:44:50 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-03-08 23:44:50 -0800
commit833bf9937e83b551a69e2290418000d29f294baf (patch)
treeed35687aedb0913d5607c4e8513b3ae5ae161b4c /pkgs/development/libraries/libzdb
parentf93f9f6025f703978423c6d7d9da59c27e120487 (diff)
downloadnixlib-833bf9937e83b551a69e2290418000d29f294baf.tar
nixlib-833bf9937e83b551a69e2290418000d29f294baf.tar.gz
nixlib-833bf9937e83b551a69e2290418000d29f294baf.tar.bz2
nixlib-833bf9937e83b551a69e2290418000d29f294baf.tar.lz
nixlib-833bf9937e83b551a69e2290418000d29f294baf.tar.xz
nixlib-833bf9937e83b551a69e2290418000d29f294baf.tar.zst
nixlib-833bf9937e83b551a69e2290418000d29f294baf.zip
libzdb: 3.0 -> 3.1
Semi-automatic update. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 3.1 with grep in /nix/store/zpsvgnphvh4h494h5ivifrvrb5fjzj0w-libzdb-3.1
- found 3.1 in filename of file in /nix/store/zpsvgnphvh4h494h5ivifrvrb5fjzj0w-libzdb-3.1
Diffstat (limited to 'pkgs/development/libraries/libzdb')
-rw-r--r--pkgs/development/libraries/libzdb/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libzdb/default.nix b/pkgs/development/libraries/libzdb/default.nix
index a5799f79b56b..9d9d8f54e142 100644
--- a/pkgs/development/libraries/libzdb/default.nix
+++ b/pkgs/development/libraries/libzdb/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec
 {
-  version = "3.0";
+  version = "3.1";
   name = "libzdb-${version}";
 
   src = fetchurl
   {
     url = "http://www.tildeslash.com/libzdb/dist/libzdb-${version}.tar.gz";
-    sha256 = "e334bcb9ca1410e863634a164e3b1b5784018eb6e90b6c2b527780fc29a123c8";
+    sha256 = "1596njvy518x7vsvsykmnk1ky82x8jxd6nmmp551y6hxn2qsn08g";
   };
 
   buildInputs = [ sqlite ];