3
0
Fork 0
forked from mirrors/nixpkgs

uhttpmock: fix cross compilation

This commit is contained in:
Nick Cao 2021-12-12 17:00:04 +08:00
parent 977810ca50
commit f017ea339c
No known key found for this signature in database
GPG key ID: 068A56CEF48FA2C1

View file

@ -11,10 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "0kkf670abkq5ikm3mqls475lydfsd9by1kv5im4k757xrl1br1d4";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ autoconf gtk-doc automake libtool glib libsoup gobject-introspection ];
nativeBuildInputs = [ pkg-config autoconf automake gtk-doc libtool gobject-introspection ];
buildInputs = [ glib libsoup ];
preConfigure = "./autogen.sh";
preConfigure = "NOCONFIGURE=1 ./autogen.sh";
meta = with lib; {
description = "Project for mocking web service APIs which use HTTP or HTTPS";