16 lines
261 B
Nix
16 lines
261 B
Nix
{
|
|
kdeApp, lib,
|
|
ecm,
|
|
boost, gpgme
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "gpgmepp";
|
|
meta = {
|
|
license = with lib.licenses; [ lgpl21 bsd3 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ ecm ];
|
|
propagatedBuildInputs = [ boost gpgme ];
|
|
}
|