summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-15.12/kcalc.nix
blob: e4c8e9d69253df1287993565921611547d8897a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ kdeApp
, lib
, makeQtWrapper
, extra-cmake-modules
, gmp
, kdoctools
, kconfig
, kconfigwidgets
, kguiaddons
, kinit
, knotifications
}:

kdeApp {
  name = "kcalc";

  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
  ];

  buildInputs = [
    gmp
    kconfig
    kconfigwidgets
    kguiaddons
    kinit
    knotifications
  ];

  postInstall = ''
    wrapQtProgram "$out/bin/kcalc"
  '';

  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.fridh ];
  };
}