gnutls2: fix build in chroot (/usr/bin/perl doc script)
I've got no idea how this could get triggered on Hydra, 97e7ce2
?
This commit is contained in:
parent
896ae598d1
commit
6fa5612a46
@ -1,5 +1,5 @@
|
|||||||
{ fetchurl, stdenv, zlib, lzo, libtasn1, nettle
|
{ fetchurl, stdenv, zlib, lzo, libtasn1, nettle
|
||||||
, guileBindings, guile, pkgconfig }:
|
, guileBindings, guile, pkgconfig, perl }:
|
||||||
|
|
||||||
assert guileBindings -> guile != null;
|
assert guileBindings -> guile != null;
|
||||||
|
|
||||||
@ -20,6 +20,8 @@ stdenv.mkDerivation rec {
|
|||||||
})];
|
})];
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
|
patchShebangs .
|
||||||
|
|
||||||
./configure --prefix="$out" \
|
./configure --prefix="$out" \
|
||||||
--disable-dependency-tracking --enable-fast-install \
|
--disable-dependency-tracking --enable-fast-install \
|
||||||
--with-lzo --with-libtasn1-prefix="${libtasn1}" \
|
--with-lzo --with-libtasn1-prefix="${libtasn1}" \
|
||||||
@ -29,7 +31,7 @@ stdenv.mkDerivation rec {
|
|||||||
else ""}
|
else ""}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [ zlib lzo libtasn1 pkgconfig ]
|
buildInputs = [ zlib lzo libtasn1 pkgconfig perl ]
|
||||||
++ stdenv.lib.optional guileBindings guile;
|
++ stdenv.lib.optional guileBindings guile;
|
||||||
|
|
||||||
propagatedBuildInputs = [ nettle ];
|
propagatedBuildInputs = [ nettle ];
|
||||||
|
Loading…
Reference in New Issue
Block a user