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

let
  unwrapped =
    mkDerivation {
      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" ];
}