[cpan2nix] perlPackages.Mouse: v2.4.10 -> v2.5.2

This commit is contained in:
volth 2018-04-07 07:57:10 +00:00
parent 7641bb122e
commit 64ac4a1716
1 changed files with 4 additions and 7 deletions

View File

@ -10360,15 +10360,12 @@ let self = _self // overrides; _self = with self; {
};
Mouse = buildPerlModule rec {
name = "Mouse-v2.4.10";
name = "Mouse-2.5.2";
src = fetchurl {
url = "mirror://cpan/authors/id/G/GF/GFUJI/${name}.tar.gz";
sha256 = "053d28c4v8kj7llwfwj5hjkvc1kcs6mvcn24yg7vxklgj6hxv5dr";
url = mirror://cpan/authors/id/S/SK/SKAJI/Mouse-v2.5.2.tar.gz;
sha256 = "17nr2432cfw7q2qxiz8pv7lw91dszgvn4ln77gpv2m77kjh5ilbs";
};
buildInputs = [
ModuleBuildXSUtil TestException TestLeakTrace TestRequires TestOutput
TestFatal
];
buildInputs = [ DevelPPPort ModuleBuildXSUtil TestException TestFatal TestLeakTrace TestOutput TestRequires TryTiny self.version ];
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isi686 "-fno-stack-protector";
hardeningDisable = stdenv.lib.optional stdenv.isi686 "stackprotector";
};