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

  

             
                  




                                                
                                                            




                                                                  



                            
{
  mkDerivation, lib, kdeWrapper,
  extra-cmake-modules, kdoctools,
  kconfig, kconfigwidgets, kguiaddons, kinit, knotifications, gmp
}:

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