mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
Adding GPA, The GNU Privacy Assistant.
(cherry picked from commit 24a89c028a
)
This commit is contained in:
parent
f736843200
commit
0326fd03d4
20
pkgs/applications/misc/gpa/default.nix
Normal file
20
pkgs/applications/misc/gpa/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -9984,6 +9984,8 @@ let
|
||||
|
||||
google-musicmanager = callPackage ../applications/audio/google-musicmanager { };
|
||||
|
||||
gpa = callPackage ../applications/misc/gpa { };
|
||||
|
||||
gpicview = callPackage ../applications/graphics/gpicview { };
|
||||
|
||||
gqrx = callPackage ../applications/misc/gqrx { };
|
||||
|
Loading…
Reference in New Issue
Block a user