2010-08-06 00:04:10 +02:00
|
|
|
{ stdenv, fetchurl, automake }:
|
2008-04-07 01:18:25 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gdbm-1.8.3";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/gdbm/${name}.tar.gz";
|
|
|
|
sha256 = "1j8x51xc71di1fx23sl22n5ghlqxl9a57sxri82l12z2l8w06d6c";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./install.patch ];
|
|
|
|
|
2010-08-06 00:04:10 +02:00
|
|
|
# The fuloong2f is not supported by gdbm 1.8.3 still
|
|
|
|
preConfigure = ''
|
|
|
|
cp ${automake}/share/automake*/config.{sub,guess} .
|
|
|
|
'';
|
|
|
|
|
2008-04-07 01:18:25 +02:00
|
|
|
meta = {
|
|
|
|
description = "GNU DBM key/value database library";
|
|
|
|
homepage = http://www.gnu.org/software/gdbm/;
|
|
|
|
license = "GPLv2+";
|
|
|
|
};
|
|
|
|
}
|