-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #151234 from primeos/wlroots
wlroots: 0.14.1 -> 0.15.0
- Loading branch information
Showing
4 changed files
with
102 additions
and
14 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
{ lib, stdenv, fetchFromGitLab, meson_0_60, ninja, pkg-config, wayland-scanner | ||
, libGL, wayland, wayland-protocols, libinput, libxkbcommon, pixman | ||
, xcbutilwm, libX11, libcap, xcbutilimage, xcbutilerrors, mesa | ||
, libpng, ffmpeg, xcbutilrenderutil, seatd, vulkan-loader, glslang | ||
|
||
, enableXWayland ? true, xwayland ? null | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "wlroots"; | ||
version = "0.15.0"; | ||
|
||
src = fetchFromGitLab { | ||
domain = "gitlab.freedesktop.org"; | ||
owner = "wlroots"; | ||
repo = "wlroots"; | ||
rev = version; | ||
sha256 = "0wdzs0wpv61pxgy3mx3xjsndyfmbj30v47d3w9ymmnd4r479n41n"; | ||
}; | ||
|
||
# $out for the library and $examples for the example programs (in examples): | ||
outputs = [ "out" "examples" ]; | ||
|
||
depsBuildBuild = [ pkg-config ]; | ||
|
||
nativeBuildInputs = [ meson_0_60 ninja pkg-config wayland-scanner ]; | ||
|
||
buildInputs = [ | ||
libGL wayland wayland-protocols libinput libxkbcommon pixman | ||
xcbutilwm libX11 libcap xcbutilimage xcbutilerrors mesa | ||
libpng ffmpeg xcbutilrenderutil seatd vulkan-loader glslang | ||
] | ||
++ lib.optional enableXWayland xwayland | ||
; | ||
|
||
mesonFlags = | ||
lib.optional (!enableXWayland) "-Dxwayland=disabled" | ||
; | ||
|
||
postFixup = '' | ||
# 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 | ||
cd ./examples | ||
for binary in $(find . -executable -type f -printf '%P\n' | grep -vE '\.so'); do | ||
cp "$binary" "$examples/bin/wlroots-$binary" | ||
done | ||
''; | ||
|
||
meta = with lib; { | ||
description = "A modular Wayland compositor library"; | ||
longDescription = '' | ||
Pluggable, composable, unopinionated modules for building a Wayland | ||
compositor; or about 50,000 lines of code you were going to write anyway. | ||
''; | ||
inherit (src.meta) homepage; | ||
changelog = "https://gitlab.freedesktop.org/wlroots/wlroots/-/tags/${version}"; | ||
license = licenses.mit; | ||
platforms = platforms.linux; | ||
maintainers = with maintainers; [ primeos synthetica ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters