nixpkgs/pkgs/applications/misc/gpa/default.nix
William A. Kennington III c2c70b5edd gpa: 0.9.7 -> 0.9.9
2015-09-11 12:41:39 -07:00

20 lines
565 B
Nix

{ stdenv, fetchurl, intltool, pkgconfig, gtk, gpgme, libgpgerror, libassuan }:
stdenv.mkDerivation rec {
name = "gpa-0.9.9";
src = fetchurl {
url = "mirror://gnupg/gpa/${name}.tar.bz2";
sha256 = "0d235hcqai7m3qb7m9kvr2r4qg4714f87j9fdplwrlz1p4wdfa38";
};
buildInputs = [ intltool pkgconfig gtk gpgme libgpgerror libassuan ];
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;
};
}