p11-kit: do not use libiconv where not needed
Building libiconv even fails on Linux due to missing gets.
This commit is contained in:
parent
1fca03afab
commit
b772f53acb
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, libiconv, pkgconfig, libffi, libtasn1 }:
|
||||
{ stdenv, fetchurl, libiconvOrEmpty, pkgconfig, libffi, libtasn1 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "p11-kit-0.20.2";
|
||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
configureFlags = "--without-libtasn1";
|
||||
|
||||
buildInputs = [ libiconv pkgconfig libffi libtasn1 ];
|
||||
buildInputs = [ pkgconfig libffi libtasn1 ] ++ libiconvOrEmpty;
|
||||
|
||||
meta = {
|
||||
homepage = http://p11-glue.freedesktop.org/;
|
||||
|
|
Loading…
Reference in a new issue