nixpkgs/pkgs/applications/kde-apps-15.08/gpgmepp.nix

22 lines
297 B
Nix
Raw Normal View History

{ kdeApp
2015-09-27 15:03:46 +00:00
, lib
, extra-cmake-modules
, boost
, gpgme
}:
kdeApp {
2015-09-27 15:03:46 +00:00
name = "gpgmepp";
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
boost
gpgme
];
meta = {
license = with lib.licenses; [ lgpl21 bsd3 ];
maintainers = [ lib.maintainers.ttuegel ];
};
}