159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
56 lines
1 KiB
Nix
56 lines
1 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
qtbase,
|
|
qtwayland,
|
|
wayland,
|
|
wayland-protocols,
|
|
wayland-scanner,
|
|
extra-cmake-modules,
|
|
deepin-wayland-protocols,
|
|
qttools,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dwayland";
|
|
version = "5.25.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-XZvL3lauVW5D3r3kybpS3SiitvwEScqgYe2h9c1DuCs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
qttools
|
|
wayland-scanner
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
qtwayland
|
|
wayland
|
|
wayland-protocols
|
|
deepin-wayland-protocols
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
# cmake requires that the kf5 directory must not empty
|
|
postInstall = ''
|
|
mkdir $out/include/KF5
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Qt-style API to interact with the wayland-client and wayland-server";
|
|
homepage = "https://github.com/linuxdeepin/dwayland";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.deepin.members;
|
|
};
|
|
}
|