about summary refs log tree commit diff
path: root/pkgs/applications/misc/gpa/default.nix
blob: cf6a915e29c1871e5b8c4e3997492e4c1c83b423 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv, fetchurl, intltool, pkg-config, gtk2, gpgme, libgpg-error, libassuan }:

stdenv.mkDerivation rec {
  pname = "gpa";
  version = "0.10.0";

  src = fetchurl {
    url = "mirror://gnupg/gpa/gpa-${version}.tar.bz2";
    sha256 = "1cbpc45f8qbdkd62p12s3q2rdq6fa5xdzwmcwd3xrj55bzkspnwm";
  };

  nativeBuildInputs = [ intltool pkg-config ];
  buildInputs = [ gtk2 gpgme libgpg-error libassuan ];

  meta = with lib; {
    description = "Graphical user interface for the GnuPG";
    homepage = "https://www.gnupg.org/related_software/gpa/";
    license = licenses.gpl3Plus;
    platforms = platforms.unix;
    mainProgram = "gpa";
  };
}