1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/applications/kde/kcolorchooser.nix

16 lines
328 B
Nix
Raw Normal View History

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