mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
66ceb14b5e
I know that pth fails to build on arm, by now.
31 lines
807 B
Nix
31 lines
807 B
Nix
{ fetchurl, stdenv, pth, libgpgerror }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libassuan-2.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
|
|
sha256 = "06xckkvxxlx7cj77803m8x58gxksap4k8yhspc5cqsy7fhinimds";
|
|
};
|
|
|
|
propagatedBuildInputs = [ libgpgerror ]
|
|
++ stdenv.lib.optional pth.supported pth;
|
|
|
|
doCheck = true;
|
|
|
|
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;
|
|
};
|
|
}
|