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

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