summary refs log tree commit diff
path: root/pkgs/development/libraries/libsigsegv/default.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2017-04-11 14:00:49 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-04-11 14:01:34 +0300
commite4b48c71864400a0e2ba79258668ff9b4762cd82 (patch)
treea6c047244b2be664f56c09a0fa89779fcae6cc3c /pkgs/development/libraries/libsigsegv/default.nix
parent1ccd871fde18054e7abed0d76f197cbc196fef9b (diff)
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.
Diffstat (limited to 'pkgs/development/libraries/libsigsegv/default.nix')
-rw-r--r--pkgs/development/libraries/libsigsegv/default.nix9
1 files changed, 1 insertions, 8 deletions
diff --git a/pkgs/development/libraries/libsigsegv/default.nix b/pkgs/development/libraries/libsigsegv/default.nix
index 1cbd5bb52f55b..0e644686af02c 100644
--- a/pkgs/development/libraries/libsigsegv/default.nix
+++ b/pkgs/development/libraries/libsigsegv/default.nix
@@ -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/;