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

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

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