summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-15.12/gpgmepp.nix
blob: ac14573dcaa3f66cd4eba75b1591d74c6768d7dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ kdeApp
, lib
, extra-cmake-modules
, boost
, gpgme
}:

kdeApp {
  name = "gpgmepp";
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    boost
    gpgme
  ];
  meta = {
    license = with lib.licenses; [ lgpl21 bsd3 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
}