2016-09-11 22:24:51 +01:00
|
|
|
{ stdenv, fetchurl, intltool, pkgconfig, gtk2, gpgme, libgpgerror, libassuan }:
|
2015-01-29 19:28:18 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-23 01:44:55 +00:00
|
|
|
name = "gpa-0.9.10";
|
2015-01-29 19:28:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-01-29 21:38:06 +00:00
|
|
|
url = "mirror://gnupg/gpa/${name}.tar.bz2";
|
2017-03-23 01:44:55 +00:00
|
|
|
sha256 = "09xphbi2456qynwqq5n0yh0zdmdi2ggrj3wk4hsyh5lrzlvcrff3";
|
2015-01-29 19:28:18 +00:00
|
|
|
};
|
|
|
|
|
2017-03-23 01:44:55 +00:00
|
|
|
nativeBuildInputs = [ intltool pkgconfig ];
|
|
|
|
buildInputs = [ gtk2 gpgme libgpgerror libassuan ];
|
2015-01-29 19:28:18 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Graphical user interface for the GnuPG";
|
|
|
|
homepage = https://www.gnupg.org/related_software/gpa/;
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|