nixpkgs/pkgs/desktops/kde-5/applications/kcalc.nix

21 lines
464 B
Nix
Raw Normal View History

{
kdeApp, lib, makeQtWrapper, kdoctools,
ecm, kconfig, kconfigwidgets, kguiaddons, kinit,
knotifications, gmp
}:
kdeApp {
name = "kcalc";
2016-04-28 11:10:53 -07:00
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.fridh ];
};
nativeBuildInputs = [ ecm kdoctools makeQtWrapper ];
2016-04-28 11:10:53 -07:00
propagatedBuildInputs = [
gmp kconfig kconfigwidgets kguiaddons kinit knotifications
];
postInstall = ''
wrapQtProgram "$out/bin/kcalc"
'';
}