maintainers: add branwright1

river: init at unstable 2021-04-08

river: init at unstable 2021-04-08

river: init at unstable 2021-04-08

river: init at unstable 2021-04-08

river: init at unstable 2021-04-08

river: init at unstable 2021-04-08

river: init at unstable 2021-04-08
This commit is contained in:
branwright1 2021-04-14 06:30:03 +01:00
parent 7eb91a2e24
commit 3943b3ddf2
3 changed files with 23 additions and 10 deletions

View file

@ -1364,6 +1364,12 @@
githubId = 302429;
name = "Marton Boros";
};
branwright1 = {
email = "branwright@protonmail.com";
github = "branwright1";
githubId = 71175207;
name = "Brandon Wright";
};
bramd = {
email = "bram@bramd.nl";
github = "bramd";

View file

@ -1,11 +1,12 @@
{ lib, stdenv ,fetchFromGitHub
, zig, pkg-config, scdoc
, wayland ,xwayland, wayland-protocols, wlroots
, libxkbcommon, pixman, libudev, libevdev, libX11, libGL
, zig, wayland, pkg-config, scdoc
, xwayland, wayland-protocols, wlroots
, libxkbcommon, pixman, udev, libevdev, libX11, libGL
}:
stdenv.mkDerivation rec {
name = "river";
pname = "river";
version = "unstable-2021-04-08";
src = fetchFromGitHub {
owner = "ifreund";
@ -15,21 +16,25 @@ stdenv.mkDerivation rec {
fetchSubmodules = true;
};
buildInputs = [ wayland xwayland wayland-protocols wlroots pixman
libxkbcommon pixman libudev libevdev libX11 libGL
buildInputs = [ xwayland wayland-protocols wlroots pixman
libxkbcommon pixman udev libevdev libX11 libGL
];
preBuild = "export HOME=$TMPDIR;";
installPhase = "zig build -Drelease-safe -Dxwayland -Dman-pages --prefix $out install";
preBuild = ''
export HOME=$TMPDIR
'';
installPhase = ''
zig build -Drelease-safe -Dxwayland -Dman-pages --prefix $out install
'';
nativeBuildInputs = [ zig scdoc pkg-config ];
nativeBuildInputs = [ zig wayland scdoc pkg-config ];
installFlags = [ "DESTDIR=$(out)" ];
meta = with lib; {
description = "A dynamic tiling wayland compositor";
longDescription = ''
river is a dynamic tiling wayland compositor that takes inspiration from dwm and bspwm.
river is a dynamic tiling wayland compositor that takes inspiration from dwm and bspwm.
'';
homepage = "https://github.com/ifreund/river";
license = licenses.gpl3Plus;

View file

@ -2912,6 +2912,8 @@ in
psrecord = python3Packages.callPackage ../tools/misc/psrecord {};
river = callPackage ../applications/window-managers/river { };
rmapi = callPackage ../applications/misc/remarkable/rmapi { };
rmview = libsForQt5.callPackage ../applications/misc/remarkable/rmview { };