summary refs log tree commit diff
path: root/pkgs/applications/kde/kcolorchooser.nix
blob: c1266009b686cde0ce880c61508d14f242a90bde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  kdeApp, lib, kdeWrapper,
  extra-cmake-modules, ki18n, kwidgetsaddons, kxmlgui
}:

let
  unwrapped =
    kdeApp {
      name = "kcolorchooser";
      meta = {
        license = with lib.licenses; [ mit ];
        maintainers = [ lib.maintainers.ttuegel ];
      };
      nativeBuildInputs = [ extra-cmake-modules ];
      propagatedBuildInputs = [ ki18n kwidgetsaddons kxmlgui ];
    };
in
kdeWrapper {
  inherit unwrapped;
  targets = [ "bin/kcolorchooser" ];
}