2021-09-04 21:05:03 +01:00
|
|
|
{ lib, stdenv, fetchurl, intltool, pkg-config, gtk2, gpgme, libgpg-error, libassuan }:
|
2015-01-29 19:28:18 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-11-07 20:29:51 +00:00
|
|
|
pname = "gpa";
|
|
|
|
version = "0.10.0";
|
2015-01-29 19:28:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-07 20:29:51 +00:00
|
|
|
url = "mirror://gnupg/gpa/gpa-${version}.tar.bz2";
|
2018-10-17 15:49:39 +01:00
|
|
|
sha256 = "1cbpc45f8qbdkd62p12s3q2rdq6fa5xdzwmcwd3xrj55bzkspnwm";
|
2015-01-29 19:28:18 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ intltool pkg-config ];
|
2021-09-04 21:05:03 +01:00
|
|
|
buildInputs = [ gtk2 gpgme libgpg-error libassuan ];
|
2015-01-29 19:28:18 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-01-29 19:28:18 +00:00
|
|
|
description = "Graphical user interface for the GnuPG";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnupg.org/related_software/gpa/";
|
2015-01-29 19:28:18 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2018-05-01 06:07:39 +01:00
|
|
|
platforms = platforms.unix;
|
2015-01-29 19:28:18 +00:00
|
|
|
};
|
|
|
|
}
|