Merge pull request #5834 from Ralith/libuv

libuv: pkgconfig
This commit is contained in:
Domen Kožar 2015-01-19 01:22:45 +01:00
commit 1cd6cb2d6d

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
''; '';