nixpkgs/pkgs/applications/misc/gpa/default.nix
Lluís Batlle i Rossell e3a93dc45f gpa: using mirror url.
(cherry picked from commit bdc630e7e97837aa4457c7da4562f9d22e21df87)
2015-01-29 22:38:46 +01:00

21 lines
568 B
Nix

{ stdenv, fetchurl, intltool, pkgconfig, gtk, gpgme, libgpgerror, libassuan }:
stdenv.mkDerivation rec {
name = "gpa-0.9.7";
src = fetchurl {
url = "mirror://gnupg/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;
};
}