summary refs log tree commit diff
path: root/pkgs/development/perl-modules/XML-Parser/default.nix
blob: ce86a007279d13c9587204613937707bc483c4eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{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;
}