mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
perl-XML-XPath: 1.13 -> 1.37
This commit is contained in:
parent
ac12a89278
commit
7a2a1173a5
1 changed files with 10 additions and 5 deletions
|
@ -14353,13 +14353,18 @@ let self = _self // overrides; _self = with self; {
|
|||
makeMakerFlags = "EXPATLIBPATH=${pkgs.expat.out}/lib EXPATINCPATH=${pkgs.expat.dev}/include";
|
||||
};
|
||||
|
||||
XMLXPath = buildPerlPackage {
|
||||
name = "XML-XPath-1.13";
|
||||
XMLXPath = buildPerlPackage rec {
|
||||
name = "XML-XPath-1.37";
|
||||
src = fetchurl {
|
||||
url = mirror://cpan/authors/id/M/MS/MSERGEANT/XML-XPath-1.13.tar.gz;
|
||||
sha256 = "0xjmfwda7m3apj7yrjzmkm4sjwnz4bqyaynzgcwqhx806kgw4j9a";
|
||||
url = "mirror://cpan/authors/id/M/MA/MANWAR/${name}.tar.gz";
|
||||
sha256 = "b8ae1196184f794528a9727988dce944ecec7155e6ee1c433b17e12737a22725";
|
||||
};
|
||||
buildInputs = [ PathTiny ];
|
||||
propagatedBuildInputs = [ XMLParser ];
|
||||
meta = {
|
||||
description = "Modules for parsing and evaluating XPath statements";
|
||||
license = stdenv.lib.licenses.artistic2;
|
||||
};
|
||||
propagatedBuildInputs = [XMLParser];
|
||||
};
|
||||
|
||||
XMLXPathEngine = buildPerlPackage {
|
||||
|
|
Loading…
Reference in a new issue