summary refs log tree commit diff
path: root/pkgs/development/perl-modules/XML-Parser/default.nix
blob: 3f41b6327035cf302e1550128b0f0276c010ddae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, perl, expat}:

assert perl != null && expat != null;

stdenv.mkDerivation {
  name = "perl-XML-Parser-2.34";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://search.cpan.org/CPAN/authors/id/M/MS/MSERGEANT/XML-Parser-2.34.tar.gz;
    md5 = "84d9e0001fe01c14867256c3fe115899";
  };
  perl = perl;
  expat = expat;
}