Merge pull request #121405 from branwright1/revert-121357-new-river

Revert "river: refactor"
This commit is contained in:
Anderson Torres 2021-05-02 14:57:41 -03:00 committed by GitHub
commit bebfaab5ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,7 @@
{ lib { lib, stdenv ,fetchFromGitHub
, stdenv , zig, wayland, pkg-config, scdoc
, fetchFromGitHub , xwayland, wayland-protocols, wlroots
, libGL , libxkbcommon, pixman, udev, libevdev, libX11, libGL
, libX11
, libevdev
, libxkbcommon
, pixman
, pkg-config
, scdoc
, udev
, wayland
, wayland-protocols
, wlroots
, xwayland
, zig
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -24,62 +12,33 @@ stdenv.mkDerivation rec {
owner = "ifreund"; owner = "ifreund";
repo = pname; repo = pname;
rev = "0c8e718d95a6a621b9cba0caa9158915e567b076"; rev = "0c8e718d95a6a621b9cba0caa9158915e567b076";
sha256 = "sha256-c3lzsA2oml7DlfYA5mipHafF3Y3mqY1eJR6e2H8DUMo="; sha256 = "1jjh0dzxi7hy4mg8vag6ipfwb9qxm5lfc07njp1mx6m81nq76ybk";
fetchSubmodules = true; fetchSubmodules = true;
}; };
nativeBuildInputs = [ buildInputs = [ xwayland wayland-protocols wlroots pixman
pkg-config libxkbcommon pixman udev libevdev libX11 libGL
scdoc
wayland-protocols
zig
];
buildInputs = [
libGL
libX11
libevdev
libxkbcommon
pixman
pixman
udev
wayland
wlroots
xwayland
]; ];
dontConfigure = true; preBuild = ''
buildPhase = ''
runHook preBuild
export HOME=$TMPDIR export HOME=$TMPDIR
zig build -Dman-pages -Drelease-safe -Dxwayland --prefix $out '';
runHook postBuild installPhase = ''
zig build -Drelease-safe -Dxwayland -Dman-pages --prefix $out install
''; '';
installPhase = '' nativeBuildInputs = [ zig wayland scdoc pkg-config ];
runHook preInstall
zig build -Dman-pages -Drelease-safe -Dxwayland --prefix $out install installFlags = [ "DESTDIR=$(out)" ];
runHook postInstall
'';
meta = with lib; { meta = with lib; {
homepage = "https://github.com/ifreund/river";
description = "A dynamic tiling wayland compositor"; description = "A dynamic tiling wayland compositor";
longDescription = '' longDescription = ''
river is a dynamic tiling wayland compositor that takes inspiration from river is a dynamic tiling wayland compositor that takes inspiration from dwm and bspwm.
dwm and bspwm.
Its design goals are:
- Simplicity and minimalism, river should not overstep the bounds of a
window manager.
- 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.
''; '';
homepage = "https://github.com/ifreund/river";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ branwright1 AndersonTorres ];
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ branwright1 ];
}; };
} }