2020-03-10 14:33:00 +00:00
|
|
|
{ stdenv, fetchFromGitHub, meson, ninja, pkg-config, wayland
|
|
|
|
, libGL, wayland-protocols, libinput, libxkbcommon, pixman
|
2019-05-28 20:09:34 +01:00
|
|
|
, xcbutilwm, libX11, libcap, xcbutilimage, xcbutilerrors, mesa
|
2020-06-13 03:31:01 +01:00
|
|
|
, libpng, ffmpeg
|
2017-10-31 21:31:05 +00:00
|
|
|
}:
|
|
|
|
|
2019-06-03 14:24:50 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-10-22 21:51:10 +01:00
|
|
|
pname = "wlroots";
|
2020-06-24 19:57:00 +01:00
|
|
|
version = "0.11.0";
|
2017-10-31 21:31:05 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "swaywm";
|
|
|
|
repo = "wlroots";
|
2018-10-22 21:51:10 +01:00
|
|
|
rev = version;
|
2020-06-24 19:57:00 +01:00
|
|
|
sha256 = "08d5d52m8wy3imfc6mdxpx8swhh2k4s1gmfaykg02j59z84awc6p";
|
2017-10-31 21:31:05 +00:00
|
|
|
};
|
|
|
|
|
2019-08-27 10:09:43 +01:00
|
|
|
# $out for the library and $examples for the example programs (in examples):
|
|
|
|
outputs = [ "out" "examples" ];
|
2017-10-31 21:31:05 +00:00
|
|
|
|
2020-03-10 14:33:00 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config wayland ];
|
2017-10-31 21:31:05 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
2020-06-24 19:57:00 +01:00
|
|
|
libGL wayland wayland-protocols libinput libxkbcommon pixman
|
2019-05-28 20:09:34 +01:00
|
|
|
xcbutilwm libX11 libcap xcbutilimage xcbutilerrors mesa
|
2020-06-13 03:31:01 +01:00
|
|
|
libpng ffmpeg
|
2018-10-22 21:51:10 +01:00
|
|
|
];
|
|
|
|
|
2020-06-24 19:57:00 +01:00
|
|
|
mesonFlags = [ "-Dlogind-provider=systemd" ];
|
|
|
|
|
2019-02-03 16:52:53 +00:00
|
|
|
postFixup = ''
|
2018-10-22 21:51:10 +01:00
|
|
|
# Install ALL example programs to $examples:
|
|
|
|
# screencopy dmabuf-capture input-inhibitor layer-shell idle-inhibit idle
|
|
|
|
# screenshot output-layout multi-pointer rotation tablet touch pointer
|
|
|
|
# simple
|
|
|
|
mkdir -p $examples/bin
|
2018-10-24 22:40:20 +01:00
|
|
|
cd ./examples
|
|
|
|
for binary in $(find . -executable -type f -printf '%P\n' | grep -vE '\.so'); do
|
|
|
|
cp "$binary" "$examples/bin/wlroots-$binary"
|
2018-10-22 21:51:10 +01:00
|
|
|
done
|
2017-12-23 13:02:59 +00:00
|
|
|
'';
|
|
|
|
|
2017-10-31 21:31:05 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A modular Wayland compositor library";
|
2020-03-10 14:33:00 +00:00
|
|
|
longDescription = ''
|
|
|
|
Pluggable, composable, unopinionated modules for building a Wayland
|
|
|
|
compositor; or about 50,000 lines of code you were going to write anyway.
|
|
|
|
'';
|
2017-10-31 21:31:05 +00:00
|
|
|
inherit (src.meta) homepage;
|
2020-03-10 14:33:00 +00:00
|
|
|
changelog = "https://github.com/swaywm/wlroots/releases/tag/${version}";
|
2017-10-31 21:31:05 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
|
|
|
}
|