nixpkgs/pkgs/applications/kde/kcolorchooser.nix

17 lines
359 B
Nix
Raw Normal View History

{
2017-05-16 15:56:41 +00:00
mkDerivation, lib,
2017-05-17 19:26:11 +00:00
extra-cmake-modules,
2017-05-16 15:56:41 +00:00
ki18n, kwidgetsaddons, kxmlgui
}:
2017-05-16 15:56:41 +00:00
mkDerivation {
name = "kcolorchooser";
meta = {
license = with lib.licenses; [ mit ];
maintainers = [ lib.maintainers.ttuegel ];
};
2017-05-17 19:26:11 +00:00
nativeBuildInputs = [ extra-cmake-modules ];
2017-05-16 15:56:41 +00:00
buildInputs = [ ki18n ];
propagatedBuildInputs = [ kwidgetsaddons kxmlgui ];
}