ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
18 lines
453 B
Nix
18 lines
453 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
ki18n, kwidgetsaddons, kxmlgui
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kcolorchooser";
|
|
meta = {
|
|
homepage = "https://apps.kde.org/kcolorchooser/";
|
|
description = "Color chooser";
|
|
mainProgram = "kcolorchooser";
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ ki18n kwidgetsaddons kxmlgui ];
|
|
}
|