From 55d24ae82345ae877832011526efb7623dbe5593 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 19 Mar 2020 15:29:08 +0000 Subject: [PATCH] libffi: fix musl tests Tests do not compile on musl, also alpine seems not to run tests. --- pkgs/development/libraries/libffi/default.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkgs/development/libraries/libffi/default.nix b/pkgs/development/libraries/libffi/default.nix index 86e790bb965..183f30e179e 100644 --- a/pkgs/development/libraries/libffi/default.nix +++ b/pkgs/development/libraries/libffi/default.nix @@ -1,9 +1,6 @@ { stdenv, fetchurl, fetchpatch , autoreconfHook -# libffi is used in darwin and linux with glibc stdenv -# we cannot run checks within it -, doCheck ? stdenv.hostPlatform.isMusl, dejagnu }: stdenv.mkDerivation rec { @@ -28,10 +25,6 @@ stdenv.mkDerivation rec { NIX_HARDENING_ENABLE=''${NIX_HARDENING_ENABLE/fortify/} ''; - checkInputs = [ dejagnu ]; - - inherit doCheck; - dontStrip = stdenv.hostPlatform != stdenv.buildPlatform; # Don't run the native `strip' when cross-compiling. meta = with stdenv.lib; {