ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
27 lines
573 B
Nix
27 lines
573 B
Nix
{ mkDerivation
|
|
, fetchurl
|
|
, lib
|
|
, extra-cmake-modules
|
|
, qtbase
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "plasma-wayland-protocols";
|
|
version = "1.14.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz";
|
|
hash = "sha256-GkOF7Px591ifBzgcqxHD/1H24vpLc7eGANatCWOUv4E=";
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
meta = {
|
|
description = "Plasma Wayland Protocols";
|
|
license = lib.licenses.lgpl21Plus;
|
|
platforms = qtbase.meta.platforms;
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|