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

22 lines
297 B
Nix
Raw Normal View History

2015-11-21 20:08:42 +00:00
{ 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 ];
};
}