Merge pull request #16693 from vrthra/gdbm

gdbm: 1.11 -> 1.12
This commit is contained in:
Tuomas Tynkkynen 2016-07-05 04:04:26 +03:00 committed by GitHub
commit a08cc3287d
1 changed files with 6 additions and 6 deletions

View File

@ -1,16 +1,16 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "gdbm-1.11";
name = "gdbm-1.12";
src = fetchurl {
url = "mirror://gnu/gdbm/${name}.tar.gz";
sha256 = "1hz3jgh3pd4qzp6jy0l8pd8x01g9abw7csnrlnj1a2sxy122z4cd";
sha256 = "1smwz4x5qa4js0zf1w3asq6z7mh20zlgwbh2bk5dczw6xrk22yyr";
};
doCheck = true;
meta = {
meta = with stdenv.lib; {
description = "GNU dbm key/value database library";
longDescription =
@ -33,8 +33,8 @@ stdenv.mkDerivation rec {
'';
homepage = http://www.gnu.org/software/gdbm/;
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.all;
maintainers = [ ];
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = [ maintainers.vrthra ];
};
}