8a45d4525b
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
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.6.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-t0/6yWnvBn5HGA50imejoYFrcVf/TqYg7UQy9Ztw8B8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
meta = {
|
|
description = "Plasma Wayland Protocols";
|
|
license = lib.licenses.lgpl21Plus;
|
|
platforms = qtbase.meta.platforms;
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|