mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
libassuan2_1: remove
This library was orphaned and out of date so it is fit for removal.
This commit is contained in:
parent
55b94cbd38
commit
3163d1aa65
2 changed files with 0 additions and 37 deletions
|
@ -1,33 +0,0 @@
|
|||
{ 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 = stdenv.lib.licenses.lgpl2Plus;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
|
@ -6816,10 +6816,6 @@ let
|
|||
|
||||
libassuan = callPackage ../development/libraries/libassuan { };
|
||||
|
||||
libassuan2_1 = callPackage ../development/libraries/libassuan/git.nix {
|
||||
automake = automake112x; # fails with 13 and 14
|
||||
};
|
||||
|
||||
libasyncns = callPackage ../development/libraries/libasyncns { };
|
||||
|
||||
libatomic_ops = callPackage ../development/libraries/libatomic_ops {};
|
||||
|
|
Loading…
Reference in a new issue