* Added DB_File (dbmmanage needs it).

svn path=/nixpkgs/trunk/; revision=10630
This commit is contained in:
Eelco Dolstra
2008-02-12 08:42:56 +00:00
parent 7558076e10
commit 65866dc7c2
3 changed files with 28 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
{fetchurl, perl, db4}:
import ../generic perl {
name = "DB_File-1.816";
src = fetchurl {
url = http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/DB_File-1.816.tar.gz;
sha256 = "1a668hk5v0l180kbqss2hq9khl756cmrykn8fz1rl4qzsp6lq284";
};
perlPreHook = "source ${./hook.sh}";
inherit db4;
}