python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / plasma-wayland-protocols / default.nix
blob74e4f6c5100d55adac2806f0948c527c09b73d86
1 { mkDerivation
2 , fetchurl
3 , lib
4 , extra-cmake-modules
5 , qtbase
6 }:
8 mkDerivation rec {
9   pname = "plasma-wayland-protocols";
10   version = "1.9.0";
12   src = fetchurl {
13     url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz";
14     sha256 = "sha256-pCdbmoVHFvpe2cK6LWl98rB0n8RaKK2WXmjQqjbF1Mg=";
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   };