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

libassuan added

svn path=/nixpkgs/branches/stdenv-updates/; revision=10190
This commit is contained in:
Yury G. Kudryashov 2008-01-17 12:58:31 +00:00
parent 1ba2194228
commit 66cba1e312
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,16 @@
args: with args;
stdenv.mkDerivation rec {
name = "libassuan-1.0.4";
src = fetchurl {
url = "ftp://ftp.gnupg.org/gcrypt/libassuan/${name}.tar.bz2";
sha256 = "1milkb5128nkgvfvfc9yi3qq8d1bvci7b3qmzfibmyh7qga6pwpw";
};
propagatedBuildInputs = [pth];
meta = {
description = "Libassuan is the IPC library used by some GnuPG related software";
homepage = http://www.gnupg.org;
};
}

View file

@ -2008,6 +2008,10 @@ rec {
inherit (xlibs) libXp libXau;
};
libassuan = import ../development/libraries/libassuan {
inherit fetchurl stdenv pth;
};
libavc1394 = import ../development/libraries/libavc1394 {
inherit fetchurl stdenv pkgconfig libraw1394;
};