mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
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:
parent
9779ae082a
commit
0765ca769a
33
pkgs/development/libraries/libassuan/git.nix
Normal file
33
pkgs/development/libraries/libassuan/git.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue