2011-08-24 17:00:17 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2008-04-06 23:18:25 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-01-21 19:20:29 +00:00
|
|
|
name = "gdbm-1.11";
|
2011-08-24 17:00:17 +00:00
|
|
|
|
2008-04-06 23:18:25 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/gdbm/${name}.tar.gz";
|
2014-01-21 19:20:29 +00:00
|
|
|
sha256 = "1hz3jgh3pd4qzp6jy0l8pd8x01g9abw7csnrlnj1a2sxy122z4cd";
|
2008-04-06 23:18:25 +00:00
|
|
|
};
|
|
|
|
|
2011-08-24 17:00:17 +00:00
|
|
|
doCheck = true;
|
2010-08-05 22:04:10 +00:00
|
|
|
|
2008-04-06 23:18:25 +00:00
|
|
|
meta = {
|
2011-08-24 17:00:17 +00:00
|
|
|
description = "GNU dbm key/value database library";
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
For compatibility with programs using old UNIX dbm function, the
|
|
|
|
package also provides traditional dbm and ndbm interfaces.
|
|
|
|
'';
|
|
|
|
|
2008-04-06 23:18:25 +00:00
|
|
|
homepage = http://www.gnu.org/software/gdbm/;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2011-08-24 17:00:17 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
2008-04-06 23:18:25 +00:00
|
|
|
};
|
|
|
|
}
|