05bdbc55ff
Adapted from <https://apps.kde.org/>.
18 lines
418 B
Nix
18 lines
418 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
ki18n, kwidgetsaddons, kxmlgui
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kcolorchooser";
|
|
meta = {
|
|
homepage = "https://apps.kde.org/kcolorchooser/";
|
|
description = "Color chooser";
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ ki18n kwidgetsaddons kxmlgui ];
|
|
}
|