3
0
Fork 0
forked from mirrors/nixpkgs

libuv: pkgconfig

This commit is contained in:
Benjamin Saunders 2015-01-18 22:24:16 +01:00
parent f012dc3216
commit c6269eb0d8

View file

@ -1,4 +1,4 @@
{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool }: { stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig }:
let let
stable = "stable"; stable = "stable";
@ -59,7 +59,7 @@ let
mkWithAutotools = stability: version: sha256: stdenv.mkDerivation { mkWithAutotools = stability: version: sha256: stdenv.mkDerivation {
name = mkName stability version; name = mkName stability version;
src = mkSrc version sha256; src = mkSrc version sha256;
buildInputs = [ automake autoconf libtool ]; buildInputs = [ automake autoconf libtool pkgconfig ];
preConfigure = '' preConfigure = ''
LIBTOOLIZE=libtoolize ./autogen.sh LIBTOOLIZE=libtoolize ./autogen.sh
''; '';