mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
e2c1352232
Currently wayland-scanner is defined to be wayland.bin, but we want to split wayland-scanner into a separate package. River also needs `wayland` itself in `buildInputs`.
103 lines
2.3 KiB
Nix
103 lines
2.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, callPackage
|
|
, fetchFromGitea
|
|
, libGL
|
|
, libX11
|
|
, libevdev
|
|
, libinput
|
|
, libxkbcommon
|
|
, pixman
|
|
, pkg-config
|
|
, scdoc
|
|
, udev
|
|
, wayland
|
|
, wayland-protocols
|
|
, wayland-scanner
|
|
, wlroots_0_18
|
|
, xwayland
|
|
, zig_0_13
|
|
, withManpages ? true
|
|
, xwaylandSupport ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "river";
|
|
version = "0.3.5";
|
|
|
|
outputs = [ "out" ] ++ lib.optionals withManpages [ "man" ];
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "river";
|
|
repo = "river";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-NUKjQOT6UgNYCebeHMxOhX08r3493IOL3qHZivEcbAg=";
|
|
};
|
|
|
|
deps = callPackage ./build.zig.zon.nix { };
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wayland-scanner
|
|
xwayland
|
|
zig_0_13.hook
|
|
]
|
|
++ lib.optional withManpages scdoc;
|
|
|
|
buildInputs = [
|
|
libGL
|
|
libevdev
|
|
libinput
|
|
libxkbcommon
|
|
pixman
|
|
udev
|
|
wayland
|
|
wayland-protocols
|
|
wlroots_0_18
|
|
] ++ lib.optional xwaylandSupport libX11;
|
|
|
|
dontConfigure = true;
|
|
|
|
zigBuildFlags = [
|
|
"--system"
|
|
"${finalAttrs.deps}"
|
|
] ++ lib.optional withManpages "-Dman-pages" ++ lib.optional xwaylandSupport "-Dxwayland";
|
|
|
|
postInstall = ''
|
|
install contrib/river.desktop -Dt $out/share/wayland-sessions
|
|
'';
|
|
|
|
passthru = {
|
|
providedSessions = [ "river" ];
|
|
updateScript = ./update.nu;
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://codeberg.org/river/river";
|
|
description = "Dynamic tiling wayland compositor";
|
|
longDescription = ''
|
|
River is a dynamic tiling Wayland compositor with flexible runtime
|
|
configuration.
|
|
|
|
Its design goals are:
|
|
- Simple and predictable behavior, river should be easy to use and have a
|
|
low cognitive load.
|
|
- Window management based on a stack of views and tags.
|
|
- Dynamic layouts generated by external, user-written executables. A
|
|
default rivertile layout generator is provided.
|
|
- Scriptable configuration and control through a custom Wayland protocol
|
|
and separate riverctl binary implementing it.
|
|
'';
|
|
changelog = "https://codeberg.org/river/river/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [
|
|
adamcstephens
|
|
moni
|
|
rodrgz
|
|
];
|
|
mainProgram = "river";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|