forked from mirrors/nixpkgs
perlPackages.TestMockModule: fix build
This commit is contained in:
parent
bb6d3c16d3
commit
7bd9321c6d
|
@ -11664,18 +11664,33 @@ let self = _self // overrides; _self = with self; {
|
|||
};
|
||||
};
|
||||
|
||||
TestMockModule = buildPerlPackage {
|
||||
name = "Test-MockModule-0.05";
|
||||
TestMockModule = buildPerlModule {
|
||||
name = "Test-MockModule-0.11";
|
||||
src = fetchurl {
|
||||
url = mirror://cpan/authors/id/S/SI/SIMONFLK/Test-MockModule-0.05.tar.gz;
|
||||
sha256 = "01vf75higpap5mwm5fyas08b3qcmy5bfq1c3wl4h0y3nihjibib7";
|
||||
url = mirror://cpan/authors/id/G/GF/GFRANKS/Test-MockModule-0.11.tar.gz;
|
||||
sha256 = "1f8l5y9dzik7a19mdbydqa0yxc4x0ilgpf9yaq6ix0bzlsilnn05";
|
||||
};
|
||||
propagatedBuildInputs = [ SUPER ];
|
||||
meta = {
|
||||
maintainers = with maintainers; [ ocharles ];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
};
|
||||
|
||||
SUPER = buildPerlPackage rec {
|
||||
name = "SUPER-1.20141117";
|
||||
src = fetchurl {
|
||||
url = "mirror://cpan/authors/id/C/CH/CHROMATIC/${name}.tar.gz";
|
||||
sha256 = "1a620e7d60aee9b13b1b26a44694c43fdb2bba1755cfff435dae83c7d42cc0b2";
|
||||
};
|
||||
propagatedBuildInputs = [ SubIdentify ];
|
||||
meta = {
|
||||
description = "Control superclass method dispatch";
|
||||
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
TestMockObject = buildPerlPackage rec {
|
||||
name = "Test-MockObject-1.20150527";
|
||||
src = fetchurl {
|
||||
|
|
Loading…
Reference in a new issue