nixpkgs/pkgs/development/perl-modules/XML-Parser/default.nix

12 lines
326 B
Nix
Raw Normal View History

{fetchurl, perl, expat}:
import ../generic perl {
name = "XML-Parser-2.34";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/XML-Parser-2.34.tar.gz;
md5 = "84d9e0001fe01c14867256c3fe115899";
};
perlPreHook = "makeMakerFlags=\"EXPATLIBPATH=$expat/lib EXPATINCPATH=$expat/include\"";
inherit expat;
}