summary refs log tree commit diff
path: root/pkgs/applications/kde/kompare.nix
blob: 1a0c2211c800ce1c8b63bd93a86ea9b74c1a5b40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools, wrapGAppsHook,
  kparts, ktexteditor, kwidgetsaddons, libkomparediff2
}:

mkDerivation {
  name = "kompare";
  meta = { license = with lib.licenses; [ gpl2 ]; };
  nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
  propagatedBuildInputs = [
    kparts ktexteditor kwidgetsaddons libkomparediff2
  ];
}