File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,10 @@ stdenv.mkDerivation rec {
2525 "ac_cv_func_realloc_0_nonnull=yes"
2626 ] ;
2727
28- env = lib . optionalAttrs stdenv . cc . isClang {
29- NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration -Wno-implicit-int" ;
30- } ;
28+ env . NIX_CFLAGS_COMPILE = toString [
29+ "-Wno-implicit-function-declaration"
30+ "-Wno-implicit-int"
31+ ] ;
3132
3233 meta = {
3334 description = "Replacement for the old crypt() package and crypt(1) command, with extensions" ;
Original file line number Diff line number Diff line change @@ -31,9 +31,11 @@ stdenv.mkDerivation rec {
3131 zlib
3232 ] ;
3333
34- doCheck = true ;
34+ # tests get stuck on aarch64-linux
35+ doCheck = stdenv . isx86_64 && stdenv . isLinux ;
3536
3637 meta = with lib ; {
38+ broken = stdenv . isDarwin ;
3739 description = "Tool to crack steganography" ;
3840 longDescription = ''
3941 Stegseek is a lightning fast steghide cracker that can be
You can’t perform that action at this time.
0 commit comments