forked from mirrors/nixpkgs
3cca04ad91
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
28 lines
574 B
Nix
28 lines
574 B
Nix
{ mkDerivation
|
|
, fetchurl
|
|
, lib
|
|
, extra-cmake-modules
|
|
, qtbase
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "plasma-wayland-protocols";
|
|
version = "1.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-OLBDHZMagzk3cKu4KUIGk2tjuJzu4/DGPw8Ibz0rG6k=";
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
meta = {
|
|
description = "Plasma Wayland Protocols";
|
|
license = lib.licenses.lgpl21Plus;
|
|
platforms = qtbase.meta.platforms;
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|