* Added Catalyst and lots of (Perl) dependencies. Not finished yet.

We should really generate these from CPAN automatically.

svn path=/nixpkgs/trunk/; revision=13091
This commit is contained in:
Eelco Dolstra
2008-10-17 14:14:50 +00:00
parent 777b377582
commit cb2095b3d6
2 changed files with 345 additions and 82 deletions

View File

@@ -1,11 +1,10 @@
{fetchurl, perl, expat}:
import ../generic perl {
name = "XML-Parser-2.34";
name = "XML-Parser-2.36";
src = fetchurl {
url = mirror://cpan/authors/id/M/MS/MSERGEANT/XML-Parser-2.34.tar.gz;
md5 = "84d9e0001fe01c14867256c3fe115899";
url = mirror://cpan/authors/id/M/MS/MSERGEANT/XML-Parser-2.36.tar.gz;
sha256 = "0gyp5qfbflhkin1zv8l6wlkjwfjvsf45a3py4vc6ni82fj32kmcz";
};
perlPreHook = "makeMakerFlags=\"EXPATLIBPATH=$expat/lib EXPATINCPATH=$expat/include\"";
inherit expat;
makeMakerFlags = "EXPATLIBPATH=${expat}/lib EXPATINCPATH=${expat}/include";
}