gmime2: use checkInputs, fix tests
This commit is contained in:
parent
cca7c9f78e
commit
b096f35369
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, glib, zlib, libgpgerror, gobjectIntrospection }:
|
{ stdenv, fetchurl, pkgconfig, glib, zlib, gnupg, libgpgerror, gobjectIntrospection }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "2.6.23";
|
version = "2.6.23";
|
||||||
@ -15,6 +15,17 @@ stdenv.mkDerivation rec {
|
|||||||
propagatedBuildInputs = [ glib zlib libgpgerror ];
|
propagatedBuildInputs = [ glib zlib libgpgerror ];
|
||||||
configureFlags = [ "--enable-introspection=yes" ];
|
configureFlags = [ "--enable-introspection=yes" ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace tests/testsuite.c \
|
||||||
|
--replace /bin/rm rm \
|
||||||
|
--replace /bin/mkdir mkdir
|
||||||
|
|
||||||
|
substituteInPlace tests/test-pkcs7.c \
|
||||||
|
--replace /bin/mkdir mkdir
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkInputs = [ gnupg ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user