about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix
blob: e8eac273cb55cfe6341959a5cf42f04a2464aa41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ kdeApp, lib
, automoc4, cmake, kdelibs
}:

kdeApp {
  name = "kcolorchooser";

  nativeBuildInputs = [ automoc4 cmake ];
  buildInputs = [ kdelibs ];

  meta = {
    license = with lib.licenses; [ mit ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
}