Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / kcolorpicker / default.nix
blob4647d65882cd677510f18dfade051355daf299a4
1 { lib, mkDerivation, fetchFromGitHub, cmake, qtbase }:
3 mkDerivation rec {
4   pname = "kcolorpicker";
5   version = "0.2.0";
7   src = fetchFromGitHub {
8     owner = "ksnip";
9     repo = "kColorPicker";
10     rev = "v${version}";
11     sha256 = "sha256-ahmMj/yzQiRP9oJwDuhJGxe849kxNsoGFDZ2CGQNhKs=";
12   };
14   nativeBuildInputs = [ cmake ];
15   buildInputs = [ qtbase ];
17   meta = with lib; {
18     description = "Qt based Color Picker with popup menu";
19     homepage = "https://github.com/ksnip/kColorPicker";
20     license = licenses.lgpl3Plus;
21     maintainers = with maintainers; [ fliegendewurst ];
22     platforms = platforms.linux;
23   };