1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

add libgcrypt and libotr

svn path=/nixpkgs/trunk/; revision=9142
This commit is contained in:
Armijn Hemel 2007-08-16 21:44:48 +00:00
parent 63aa0fbb30
commit a42c1d3486
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{stdenv, fetchurl, libgpgerror}:
stdenv.mkDerivation {
name = "libgcrypt-1.2.4";
src = fetchurl {
url = ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-1.2.4.tar.gz;
sha256 = "1v6rbx2jpwvh9jwf8n91da2p66v2gzmym6s3h1fidfdy7qqkyg6g";
};
buildInputs = [libgpgerror];
}

View file

@ -0,0 +1,11 @@
{stdenv, fetchurl, libgcrypt}:
stdenv.mkDerivation {
name = "libotr-3.1.0";
src = fetchurl {
url = http://www.cypherpunks.ca/otr/libotr-3.1.0.tar.gz;
sha256 = "1x3y5nvqcg9a0lx630cvkjpwv7mmwxpy4pcjfm6fbiqylaxn05bj";
};
buildInputs = [libgcrypt];
}