libsigsegv: Remove aarch64 patch, enable tests

The aarch64 patch has been applied upstream. Let's hope that the new
release fixes the tests as well.
This commit is contained in:
Tuomas Tynkkynen 2017-04-11 14:00:49 +03:00
parent 1ccd871fde
commit e4b48c7186
2 changed files with 1 additions and 20 deletions

View File

@ -1,12 +0,0 @@
diff --git a/configure b/configure
index 6c4e868..0298e19 100755
--- a/configure
+++ b/configure
@@ -14501,6 +14501,7 @@ else
case "$host_cpu" in
a29k | \
+ aarch64* | \
alpha* | \
arc | \
arm* | strongarm* | xscale* | \

View File

@ -8,14 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "063swdvq7mbmc1clv0rnh20grwln1zfc2qnm0sa1hivcxyr2wz6x";
};
# Based on https://github.com/davidgfnet/buildroot-Os/blob/69fe6065b9dd1cb4dcc0a4b554e42cc2e5bd0d60/package/libsigsegv/libsigsegv-0002-fix-aarch64-build.patch
# but applied directly to configure since we can't use autoreconf while bootstrapping.
patches = if stdenv.isAarch64 || stdenv.cross.arch or "" == "aarch64"
then [ ./aarch64.patch ]
else null; # TODO: change to lib.optional on next mass rebuild
# https://github.com/NixOS/nixpkgs/issues/6028
doCheck = false;
doCheck = true;
meta = {
homepage = http://www.gnu.org/software/libsigsegv/;