Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / plasma-wayland-protocols / default.nix
blobd749744d51ede13d263d56943ee4a585c8c6dbe7
1 { mkDerivation
2 , fetchurl
3 , lib
4 , extra-cmake-modules
5 , qtbase
6 }:
8 mkDerivation rec {
9   pname = "plasma-wayland-protocols";
10   version = "1.10.0";
12   src = fetchurl {
13     url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz";
14     sha256 = "sha256-MZSIZ8mgRhPm3g0jrfy8Ws7N3vCzn5hrNF7GwZcnNv4=";
15   };
17   nativeBuildInputs = [ extra-cmake-modules ];
19   buildInputs = [ qtbase ];
21   meta = {
22     description = "Plasma Wayland Protocols";
23     license = lib.licenses.lgpl21Plus;
24     platforms = qtbase.meta.platforms;
25     maintainers = [ lib.maintainers.ttuegel ];
26   };