mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
add libgcrypt and libotr
svn path=/nixpkgs/trunk/; revision=9142
This commit is contained in:
parent
63aa0fbb30
commit
a42c1d3486
11
pkgs/development/libraries/libgcrypt/default.nix
Normal file
11
pkgs/development/libraries/libgcrypt/default.nix
Normal 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];
|
||||
}
|
11
pkgs/development/libraries/libotr/default.nix
Normal file
11
pkgs/development/libraries/libotr/default.nix
Normal 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];
|
||||
}
|
Loading…
Reference in New Issue
Block a user