mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 10:56:53 +00:00
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 ];
|
|
}
|