3a4df29a92
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
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.7.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-CE4mhcqmHZTG/obc4AayJHTXu0s0xMuWvXY7l+MF+tY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
meta = {
|
|
description = "Plasma Wayland Protocols";
|
|
license = lib.licenses.lgpl21Plus;
|
|
platforms = qtbase.meta.platforms;
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|