2021-05-17 03:39:35 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, zig
|
|
|
|
, wayland
|
|
|
|
, pkg-config
|
|
|
|
, scdoc
|
|
|
|
, xwayland
|
|
|
|
, wayland-protocols
|
|
|
|
, wlroots
|
|
|
|
, libxkbcommon
|
|
|
|
, pixman
|
|
|
|
, udev
|
|
|
|
, libevdev
|
2021-06-30 03:53:05 +01:00
|
|
|
, libinput
|
2021-05-17 03:39:35 +01:00
|
|
|
, libGL
|
2022-01-28 13:14:38 +00:00
|
|
|
, xwaylandSupport ? true, libX11
|
2021-04-14 03:33:36 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-04-14 06:30:03 +01:00
|
|
|
pname = "river";
|
2022-01-21 18:59:22 +00:00
|
|
|
version = "0.1.2";
|
2021-04-14 03:33:36 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2022-01-21 18:59:22 +00:00
|
|
|
owner = "riverwm";
|
2021-04-29 21:01:54 +01:00
|
|
|
repo = pname;
|
2021-11-03 07:10:42 +00:00
|
|
|
rev = "v${version}";
|
2022-01-21 18:59:22 +00:00
|
|
|
sha256 = "0mysj6fmgiwzrfzm1rk09k4xa9qiqsdwvwr59b4rs010c1gsllwk";
|
2021-04-14 03:33:36 +01:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2021-05-17 03:39:35 +01:00
|
|
|
nativeBuildInputs = [ zig wayland xwayland scdoc pkg-config ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
wayland-protocols
|
|
|
|
wlroots
|
|
|
|
libxkbcommon
|
|
|
|
pixman
|
|
|
|
udev
|
|
|
|
libevdev
|
2021-06-30 03:53:05 +01:00
|
|
|
libinput
|
2021-05-17 03:39:35 +01:00
|
|
|
libGL
|
2022-01-28 13:14:38 +00:00
|
|
|
] ++ lib.optional xwaylandSupport libX11;
|
2021-04-14 03:33:36 +01:00
|
|
|
|
2021-05-09 17:32:05 +01:00
|
|
|
dontConfigure = true;
|
|
|
|
|
2021-05-01 17:18:33 +01:00
|
|
|
preBuild = ''
|
2021-04-14 06:30:03 +01:00
|
|
|
export HOME=$TMPDIR
|
|
|
|
'';
|
2021-05-17 03:39:35 +01:00
|
|
|
|
2021-04-14 06:30:03 +01:00
|
|
|
installPhase = ''
|
2021-05-09 17:32:05 +01:00
|
|
|
runHook preInstall
|
2022-01-28 13:14:38 +00:00
|
|
|
zig build -Drelease-safe -Dcpu=baseline ${lib.optionalString xwaylandSupport "-Dxwayland"} -Dman-pages --prefix $out install
|
2021-05-09 17:32:05 +01:00
|
|
|
runHook postInstall
|
2021-04-29 21:01:54 +01:00
|
|
|
'';
|
2021-04-14 03:33:36 +01:00
|
|
|
|
2022-01-21 18:59:22 +00:00
|
|
|
/* Builder patch install dir into river to get default config
|
|
|
|
When installFlags is removed, river becomes half broken.
|
|
|
|
See https://github.com/riverwm/river/blob/7ffa2f4b9e7abf7d152134f555373c2b63ccfc1d/river/main.zig#L56
|
2021-05-17 03:39:35 +01:00
|
|
|
*/
|
2021-05-01 17:18:33 +01:00
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
|
2021-04-14 03:33:36 +01:00
|
|
|
meta = with lib; {
|
2021-05-01 17:18:33 +01:00
|
|
|
homepage = "https://github.com/ifreund/river";
|
2021-05-09 17:32:05 +01:00
|
|
|
description = "A dynamic tiling wayland compositor";
|
2021-04-14 03:33:36 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
2021-05-16 20:29:15 +01:00
|
|
|
maintainers = with maintainers; [ fortuneteller2k ];
|
2021-04-14 03:33:36 +01:00
|
|
|
};
|
|
|
|
}
|