2018-08-20 19:43:41 +01:00
|
|
|
{ stdenv, lib, fetchurl }:
|
2008-04-07 00:18:25 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-24 22:06:17 +01:00
|
|
|
pname = "gdbm";
|
|
|
|
version = "1.18.1";
|
|
|
|
|
2018-11-10 05:03:30 +00:00
|
|
|
# FIXME: remove on update to > 1.18.1
|
2018-08-10 16:53:27 +01:00
|
|
|
NIX_CFLAGS_COMPILE = if stdenv.cc.isClang then "-Wno-error=return-type" else null;
|
2011-08-24 18:00:17 +01:00
|
|
|
|
2008-04-07 00:18:25 +01:00
|
|
|
src = fetchurl {
|
2019-05-24 22:06:17 +01:00
|
|
|
url = "mirror://gnu/gdbm/${pname}-${version}.tar.gz";
|
2018-11-10 05:03:30 +00:00
|
|
|
sha256 = "1p4ibds6z3ccy65lkmd6lm7js0kwifvl53r0fd759fjxgr917rl6";
|
2008-04-07 00:18:25 +01:00
|
|
|
};
|
|
|
|
|
2018-01-08 07:19:47 +00:00
|
|
|
doCheck = true; # not cross;
|
2010-08-05 23:04:10 +01:00
|
|
|
|
2017-06-06 14:15:02 +01:00
|
|
|
# Linking static stubs on cygwin requires correct ordering.
|
|
|
|
# Consider upstreaming this.
|
|
|
|
|
|
|
|
# Disable dbmfetch03.at test because it depends on unlink()
|
|
|
|
# failing on a link in a chmod -w directory, which cygwin
|
|
|
|
# apparently allows.
|
2018-08-20 19:43:41 +01:00
|
|
|
postPatch = lib.optionalString stdenv.buildPlatform.isCygwin ''
|
2017-06-06 14:15:02 +01:00
|
|
|
substituteInPlace tests/Makefile.in --replace \
|
|
|
|
'_LDADD = ../src/libgdbm.la ../compat/libgdbm_compat.la' \
|
|
|
|
'_LDADD = ../compat/libgdbm_compat.la ../src/libgdbm.la'
|
|
|
|
substituteInPlace tests/testsuite.at --replace \
|
|
|
|
'm4_include([dbmfetch03.at])' ""
|
|
|
|
'';
|
2019-05-24 22:06:17 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2016-08-13 10:12:26 +01:00
|
|
|
configureFlags = [ "--enable-libgdbm-compat" ];
|
|
|
|
|
2019-05-24 22:06:17 +01:00
|
|
|
# create symlinks for compatibility
|
2017-09-19 11:54:40 +01:00
|
|
|
postInstall = ''
|
|
|
|
install -dm755 $out/include/gdbm
|
|
|
|
(
|
|
|
|
cd $out/include/gdbm
|
|
|
|
ln -s ../gdbm.h gdbm.h
|
|
|
|
ln -s ../ndbm.h ndbm.h
|
|
|
|
ln -s ../dbm.h dbm.h
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
2017-06-06 14:15:02 +01:00
|
|
|
meta = with lib; {
|
2011-08-24 18:00:17 +01:00
|
|
|
description = "GNU dbm key/value database library";
|
2019-05-24 22:06:17 +01:00
|
|
|
longDescription = ''
|
|
|
|
GNU dbm (or GDBM, for short) is a library of database functions that
|
|
|
|
use extensible hashing and work similar to the standard UNIX dbm.
|
|
|
|
These routines are provided to a programmer needing to create and
|
|
|
|
manipulate a hashed database.
|
2011-08-24 18:00:17 +01:00
|
|
|
|
2019-05-24 22:06:17 +01:00
|
|
|
The basic use of GDBM is to store key/data pairs in a data file.
|
|
|
|
Each key must be unique and each key is paired with only one data
|
|
|
|
item.
|
2011-08-24 18:00:17 +01:00
|
|
|
|
2019-05-24 22:06:17 +01:00
|
|
|
The library provides primitives for storing key/data pairs,
|
|
|
|
searching and retrieving the data by its key and deleting a key
|
|
|
|
along with its data. It also support sequential iteration over all
|
|
|
|
key/data pairs in a database.
|
2011-08-24 18:00:17 +01:00
|
|
|
|
2019-05-24 22:06:17 +01:00
|
|
|
For compatibility with programs using old UNIX dbm function, the
|
|
|
|
package also provides traditional dbm and ndbm interfaces.
|
2011-08-24 18:00:17 +01:00
|
|
|
'';
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://www.gnu.org/software/gdbm/;
|
2016-07-04 10:26:13 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.vrthra ];
|
2008-04-07 00:18:25 +01:00
|
|
|
};
|
|
|
|
}
|