about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications/kcalc.nix
blob: ca1254e697403a1224f47c86513c82a4d9792ed1 (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,
  ecm, kconfig, kconfigwidgets, kguiaddons, kinit,
  knotifications, gmp
}:

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