mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
* gnupg: use readline.
svn path=/nixpkgs/trunk/; revision=6198
This commit is contained in:
parent
4bfffeee52
commit
bb53e3df6d
@ -3,7 +3,7 @@
|
||||
# enabled if it is legal for you to do so.
|
||||
ideaSupport ? false
|
||||
|
||||
, stdenv, fetchurl
|
||||
, stdenv, fetchurl, readline
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
@ -13,6 +13,7 @@ stdenv.mkDerivation {
|
||||
url = ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-1.4.5.tar.bz2;
|
||||
sha1 = "553fefe0da5a91108dd9468e381faf9487754f9a";
|
||||
};
|
||||
buildInputs = [readline];
|
||||
idea = if ideaSupport then fetchurl {
|
||||
url = ftp://ftp.gnupg.dk/pub/contrib-dk/idea.c.gz;
|
||||
md5 = "9dc3bc086824a8c7a331f35e09a3e57f";
|
||||
|
@ -397,7 +397,7 @@ rec {
|
||||
};
|
||||
|
||||
gnupg = import ../tools/security/gnupg {
|
||||
inherit fetchurl stdenv;
|
||||
inherit fetchurl stdenv readline;
|
||||
ideaSupport = true; # enable for IDEA crypto support
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user