about summary refs log tree commit diff
path: root/pkgs/development/libraries/gdbm
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-06-24 12:13:39 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-24 21:13:39 +0200
commit52493d6e0038f380caa211e695e1f6a138cc979f (patch)
tree6275494aadd54da0c2987f06d2e8217b7c20f4d2 /pkgs/development/libraries/gdbm
parentf8b0f68fd5256d1e1c9ee77f1d12fbfed7b3572f (diff)
downloadnixlib-52493d6e0038f380caa211e695e1f6a138cc979f.tar
nixlib-52493d6e0038f380caa211e695e1f6a138cc979f.tar.gz
nixlib-52493d6e0038f380caa211e695e1f6a138cc979f.tar.bz2
nixlib-52493d6e0038f380caa211e695e1f6a138cc979f.tar.lz
nixlib-52493d6e0038f380caa211e695e1f6a138cc979f.tar.xz
nixlib-52493d6e0038f380caa211e695e1f6a138cc979f.tar.zst
nixlib-52493d6e0038f380caa211e695e1f6a138cc979f.zip
gdbm: 1.14.1 -> 1.15 (#42263)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/gdbm/versions.

These checks were done:

- built on NixOS
- /nix/store/gs61jjz7j3gii2zqm8f65qxpy4k9mybq-gdbm-1.15/bin/gdbmtool passed the binary check.
- /nix/store/gs61jjz7j3gii2zqm8f65qxpy4k9mybq-gdbm-1.15/bin/gdbm_load passed the binary check.
- /nix/store/gs61jjz7j3gii2zqm8f65qxpy4k9mybq-gdbm-1.15/bin/gdbm_dump passed the binary check.
- 3 of 3 passed binary check by having a zero exit code.
- 0 of 3 passed binary check by having the new version present in output.
- found 1.15 with grep in /nix/store/gs61jjz7j3gii2zqm8f65qxpy4k9mybq-gdbm-1.15
- directory tree listing: https://gist.github.com/6bd11a4334992f4b8f19331113c0daa3
- du listing: https://gist.github.com/14f6008edc7f1045329c1205500d1a1a
Diffstat (limited to 'pkgs/development/libraries/gdbm')
-rw-r--r--pkgs/development/libraries/gdbm/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gdbm/default.nix b/pkgs/development/libraries/gdbm/default.nix
index 3fd0bb082440..a1980d62490a 100644
--- a/pkgs/development/libraries/gdbm/default.nix
+++ b/pkgs/development/libraries/gdbm/default.nix
@@ -1,11 +1,11 @@
 { stdenv, lib, buildPlatform, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "gdbm-1.14.1";
+  name = "gdbm-1.15";
 
   src = fetchurl {
     url = "mirror://gnu/gdbm/${name}.tar.gz";
-    sha256 = "0pxwz3jlwvglq2mrbxvrjgr8pa0aj73p3v9sxmdlj570zw0gzknd";
+    sha256 = "03nwsbixdp3nx3fzn3gjy0n7rcppmkkxb2nxbmd8mvb7gwhf7zgr";
   };
 
   doCheck = true; # not cross;