nixpkgs/pkgs/applications/kde/kcalc.nix

25 lines
562 B
Nix
Raw Normal View History

{
mkDerivation, lib, kdeWrapper,
extra-cmake-modules, kdoctools,
2016-07-30 22:31:49 +00:00
kconfig, kconfigwidgets, kguiaddons, kinit, knotifications, gmp
}:
2016-07-30 22:31:49 +00:00
let
unwrapped =
mkDerivation {
2016-07-30 22:31:49 +00:00
name = "kcalc";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.fridh ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2016-07-30 22:31:49 +00:00
propagatedBuildInputs = [
gmp kconfig kconfigwidgets kguiaddons kinit knotifications
];
};
in
kdeWrapper {
inherit unwrapped;
targets = [ "bin/kcalc" ];
}