Libassuan 1.0.5.
svn path=/nixpkgs/trunk/; revision=13747
This commit is contained in:
parent
c18603c3b3
commit
c50a4146c6
@ -1,16 +1,28 @@
|
|||||||
args: with args;
|
{ fetchurl, stdenv, pth }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libassuan-1.0.4";
|
name = "libassuan-1.0.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "ftp://ftp.gnupg.org/gcrypt/libassuan/${name}.tar.bz2";
|
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
|
||||||
sha256 = "1milkb5128nkgvfvfc9yi3qq8d1bvci7b3qmzfibmyh7qga6pwpw";
|
sha256 = "1xar8i5jmah75wa9my4x7vkc5b6nmzd2p6k9kmpdg9hsv04292y5";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [pth];
|
propagatedBuildInputs = [ pth ];
|
||||||
|
|
||||||
meta = {
|
doCheck = true;
|
||||||
description = "Libassuan is the IPC library used by some GnuPG related software";
|
|
||||||
homepage = http://www.gnupg.org;
|
meta = {
|
||||||
};
|
description = "Libassuan, the IPC library used by GnuPG and related software";
|
||||||
|
|
||||||
|
longDescription = ''
|
||||||
|
Libassuan is a small library implementing the so-called Assuan
|
||||||
|
protocol. This protocol is used for IPC between most newer
|
||||||
|
GnuPG components. Both, server and client side functions are
|
||||||
|
provided.
|
||||||
|
'';
|
||||||
|
|
||||||
|
homepage = http://gnupg.org;
|
||||||
|
license = "LGPLv2+";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user