libassuan: added extra package with current git version

needed for upcoming gnupg 2.1

svn path=/nixpkgs/trunk/; revision=33681
This commit is contained in:
Mathijs Kwik 2012-04-09 10:17:36 +00:00
parent 9779ae082a
commit 0765ca769a
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ fetchgit, stdenv, pth, libgpgerror, autoconf, automake, libtool }:
stdenv.mkDerivation rec {
name = "libassuan-2.1pre-git20120407";
src = fetchgit {
url = "git://git.gnupg.org/libassuan.git";
rev = "5c00c7cc2901a879927a5756e1bb7ecf49439ebc";
sha256 = "14ebcc65930360a067eea8cfbdaa5418c909bd9dfb27fe366edf78ad6c1aa69f";
};
propagatedBuildInputs = [ pth libgpgerror ];
buildInputs = [ autoconf automake libtool ];
doCheck = true;
preConfigure = "autoreconf -v";
meta = {
description = "Libassuan, the IPC library used by GnuPG and related software";
longDescription = ''
Libassuan is a small library implementing the so-called Assuan
protocol. This protocol is used for IPC between most newer
GnuPG components. Both, server and client side functions are
provided.
'';
homepage = http://gnupg.org;
license = "LGPLv2+";
platforms = stdenv.lib.platforms.all;
};
}

View file

@ -3913,6 +3913,8 @@ let
libassuan = callPackage ../development/libraries/libassuan { };
libassuan2_1 = callPackage ../development/libraries/libassuan/git.nix { };
libav = callPackage ../development/libraries/libav { };
libavc1394 = callPackage ../development/libraries/libavc1394 { };