26 lines
583 B
Nix
26 lines
583 B
Nix
|
{ mkDerivation, fetchurl, lib
|
||
|
, extra-cmake-modules
|
||
|
, qtbase
|
||
|
}:
|
||
|
|
||
|
mkDerivation rec {
|
||
|
pname = "plasma-wayland-protocols";
|
||
|
version = "1.1.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://kde/stable/${pname}/${version}/${pname}-${version}.tar.xz";
|
||
|
sha256 = "sha256-xUkzg9EVFxw0NeqaIbOWaGBjKoRFRP+sj1SJBDalHTg=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
|
||
|
buildInputs = [ qtbase ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Plasma Wayland Protocols";
|
||
|
license = lib.licenses.lgpl21Plus;
|
||
|
platforms = qtbase.meta.platforms;
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|