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

mkDerivation {
  name = "kcolorchooser";
  meta = {
    license = with lib.licenses; [ mit ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ ki18n ];
  propagatedBuildInputs = [ kwidgetsaddons kxmlgui ];
}