about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications/kompare.nix
blob: 55bbfc4486065d09b6a7a9a4e889693437f2b9c4 (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
{ kdeApp
, lib
, extra-cmake-modules
, kdoctools
, makeQtWrapper
, kparts
, ktexteditor
, kwidgetsaddons
, libkomparediff2
}:

kdeApp {
  name = "kompare";
  meta = {
    license = with lib.licenses; [ gpl2 ];
  };

  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
    makeQtWrapper
  ];

  propagatedBuildInputs = [
    kparts
    ktexteditor
    kwidgetsaddons
    libkomparediff2
  ];

  postInstall = ''
    wrapQtProgram "$out/bin/kompare"
  '';
}