forked from mirrors/nixpkgs
commit
1cd6cb2d6d
|
@ -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
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue