tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gmime3: disable failing test on darwin
Raghav Sood
2 years ago
f2a46c42
ebbe2b86
+10
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
gmime
3.nix
+10
-4
pkgs/development/libraries/gmime/3.nix
···
48
]
49
++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "ac_cv_have_iconv_detect_h=yes" ];
50
51
-
postPatch = ''
52
-
substituteInPlace tests/testsuite.c \
53
-
--replace /bin/rm rm
54
-
'';
0
0
0
0
0
0
55
56
preConfigure =
57
''
···
48
]
49
++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "ac_cv_have_iconv_detect_h=yes" ];
50
51
+
postPatch =
52
+
''
53
+
substituteInPlace tests/testsuite.c \
54
+
--replace /bin/rm rm
55
+
''
56
+
+ lib.optionalString stdenv.isDarwin ''
57
+
# This specific test fails on darwin for some unknown reason
58
+
substituteInPlace tests/test-filters.c \
59
+
--replace-fail 'test_charset_conversion (datadir, "japanese", "utf-8", "iso-2022-jp");' ""
60
+
'';
61
62
preConfigure =
63
''