Files
nixpkgs/pkgs/development/perl-modules/DB_File/default.nix
T

20 lines
393 B
Nix
Raw Normal View History

2014-01-31 14:05:37 -06:00
{fetchurl, buildPerlPackage, db}:
2008-02-12 08:42:56 +00:00
2012-07-29 20:54:39 +02:00
buildPerlPackage rec {
name = "DB_File-1.831";
2012-07-29 20:54:39 +02:00
2008-02-12 08:42:56 +00:00
src = fetchurl {
2012-07-29 20:54:39 +02:00
url = "mirror://cpan/authors/id/P/PM/PMQS/${name}.tar.gz";
sha256 = "0hq2vvcsa3nkb5bpcl0nkfsxhk8wyrsp3p3ara18rscrfd783hjs";
2008-02-12 08:42:56 +00:00
};
preConfigure = ''
cat > config.in <<EOF
PREFIX = size_t
HASH = u_int32_t
2014-01-31 14:05:37 -06:00
LIB = ${db}/lib
INCLUDE = ${db}/include
EOF
'';
2008-02-12 08:42:56 +00:00
}