summary refs log blame commit diff
path: root/pkgs/applications/kde/kcalc.nix
blob: 10164692f770fe7d6b7c95693057f5d71fc3d719 (plain) (tree)
1
2
3
4
5
6
 


                                                                 

  













                                                                  



                            
{
  kdeApp, lib, kdeWrapper,
  ecm, kdoctools,
  kconfig, kconfigwidgets, kguiaddons, kinit, knotifications, gmp
}:

let
  unwrapped =
    kdeApp {
      name = "kcalc";
      meta = {
        license = with lib.licenses; [ gpl2 ];
        maintainers = [ lib.maintainers.fridh ];
      };
      nativeBuildInputs = [ ecm kdoctools ];
      propagatedBuildInputs = [
        gmp kconfig kconfigwidgets kguiaddons kinit knotifications
      ];
    };
in
kdeWrapper {
  inherit unwrapped;
  targets = [ "bin/kcalc" ];
}