nixpkgs/pkgs/applications/misc/gpa/default.nix
Lluís Batlle i Rossell 0326fd03d4 Adding GPA, The GNU Privacy Assistant.
(cherry picked from commit 24a89c028a0d2988805b17f4c69c3f2b3a284b1f)
2015-01-29 20:29:58 +01:00

20 lines
580 B
Nix

{ stdenv, fetchurl, intltool, pkgconfig, gtk, gpgme, libgpgerror, libassuan }:
stdenv.mkDerivation rec {
name = "gpa-0.9.7";
src = fetchurl {
url = "ftp://ftp.gnupg.org/gcrypt/gpa/${name}.tar.bz2";
sha256 = "1r8pnvfw66b2m9lhajlarbxx9172c1gzripdij01bawgbrhwp33y";
};
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;
};
}