libassuan added
svn path=/nixpkgs/branches/stdenv-updates/; revision=10190
This commit is contained in:
parent
1ba2194228
commit
66cba1e312
16
pkgs/development/libraries/libassuan/default.nix
Normal file
16
pkgs/development/libraries/libassuan/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user