forked from mirrors/nixpkgs
libsigsegv: Fix for cross by disabling check
Check phase is now only disabled *by default* for cross, but this package was forcing it unconditionally.
This commit is contained in:
parent
af8d1a4ace
commit
b93e6034d5
|
@ -1,4 +1,6 @@
|
|||
{ fetchurl, stdenv }:
|
||||
{ stdenv, fetchurl
|
||||
, buildPlatform, hostPlatform
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libsigsegv-2.11";
|
||||
|
@ -8,7 +10,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "063swdvq7mbmc1clv0rnh20grwln1zfc2qnm0sa1hivcxyr2wz6x";
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
doCheck = hostPlatform == buildPlatform;
|
||||
|
||||
meta = {
|
||||
homepage = http://www.gnu.org/software/libsigsegv/;
|
||||
|
|
Loading…
Reference in a new issue