c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
27 lines
574 B
Nix
27 lines
574 B
Nix
{ mkDerivation
|
|
, fetchurl
|
|
, lib
|
|
, extra-cmake-modules
|
|
, qtbase
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "plasma-wayland-protocols";
|
|
version = "1.9.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-pCdbmoVHFvpe2cK6LWl98rB0n8RaKK2WXmjQqjbF1Mg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
meta = {
|
|
description = "Plasma Wayland Protocols";
|
|
license = lib.licenses.lgpl21Plus;
|
|
platforms = qtbase.meta.platforms;
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|