perlPackages.Mouse: 2.4.5 -> 2.4.10, fix 32bit
The package enables stackprotector and fails on 32bit. Our default stackprotector has to be turned off, too..
This commit is contained in:
parent
ff8684a141
commit
c6be8c75fe
@ -9751,15 +9751,17 @@ let self = _self // overrides; _self = with self; {
|
|||||||
};
|
};
|
||||||
|
|
||||||
Mouse = buildPerlModule rec {
|
Mouse = buildPerlModule rec {
|
||||||
name = "Mouse-v2.4.5";
|
name = "Mouse-v2.4.10";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://cpan/authors/id/S/SY/SYOHEX/${name}.tar.gz";
|
url = "mirror://cpan/authors/id/G/GF/GFUJI/${name}.tar.gz";
|
||||||
sha256 = "1f4dps68f2w1fwqjfpr4kllbcbwd744v3h1r9rkpwc2fhvq3q8hl";
|
sha256 = "053d28c4v8kj7llwfwj5hjkvc1kcs6mvcn24yg7vxklgj6hxv5dr";
|
||||||
};
|
};
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
ModuleBuildXSUtil TestException TestLeakTrace TestRequires TestOutput
|
ModuleBuildXSUtil TestException TestLeakTrace TestRequires TestOutput
|
||||||
TestFatal
|
TestFatal
|
||||||
];
|
];
|
||||||
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isi686 "-fno-stack-protector";
|
||||||
|
hardeningDisable = stdenv.lib.optional stdenv.isi686 "stackprotector";
|
||||||
};
|
};
|
||||||
|
|
||||||
MouseXNativeTraits = buildPerlPackage rec {
|
MouseXNativeTraits = buildPerlPackage rec {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user