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
@@ -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];
}