about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications/kcalc.nix
blob: 7bdc799aeb9f27b01cefe0abacbbf947d4942bb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  kdeApp, lib, makeQtWrapper, kdoctools,
  extra-cmake-modules, kconfig, kconfigwidgets, kguiaddons, kinit,
  knotifications, gmp
}:

kdeApp {
  name = "kcalc";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.fridh ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
  propagatedBuildInputs = [
    gmp kconfig kconfigwidgets kguiaddons kinit knotifications
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/kcalc"
  '';
}