mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ lib, stdenv ,fetchFromGitHub
|
|
, zig, wayland, pkg-config, scdoc
|
|
, xwayland, wayland-protocols, wlroots
|
|
, libxkbcommon, pixman, udev, libevdev, libX11, libGL
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "river";
|
|
version = "unstable-2021-04-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ifreund";
|
|
repo = pname;
|
|
rev = "0c8e718d95a6a621b9cba0caa9158915e567b076";
|
|
sha256 = "1jjh0dzxi7hy4mg8vag6ipfwb9qxm5lfc07njp1mx6m81nq76ybk";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
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
|
|
'';
|
|
|
|
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.
|
|
'';
|
|
homepage = "https://github.com/ifreund/river";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ branwright1 ];
|
|
};
|
|
}
|