summary refs log tree commit diff
path: root/pkgs/applications/kde/kolourpaint.nix
blob: 75d5b6fca65924f5a2c152dd93976b113d6ffa8f (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
{ lib
, kdeApp
, kdeWrapper
, extra-cmake-modules
, kdoctools
, kdelibs4support
, libkexiv2
}:

let
  unwrapped =
    kdeApp {
      name = "kolourpaint";
      nativeBuildInputs = [ extra-cmake-modules kdoctools ];
      propagatedBuildInputs = [
        kdelibs4support
        libkexiv2
      ];

      meta = {
        maintainers = [ lib.maintainers.fridh ];
        license = with lib.licenses; [ gpl2 ];
      };
    };
in kdeWrapper {
  inherit unwrapped;
  targets = ["bin/kolourpaint"];
}