53 lines
1.4 KiB
Nix
53 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, meson, ninja, pkg-config, wayland, scdoc, makeWrapper
|
|
, wlroots, wayland-protocols, pixman, libxkbcommon
|
|
, cairo , pango, fontconfig, pandoc, systemd
|
|
, withXwayland ? true, xwayland
|
|
, nixosTests
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cagebreak";
|
|
version = "1.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "project-repo";
|
|
repo = "cagebreak";
|
|
rev = version;
|
|
hash = "sha256-P6zBVQEv+fKdverNIXhoEavu51uGKbSHx3Sh5FWsc2E=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config wayland scdoc makeWrapper ];
|
|
|
|
buildInputs = [
|
|
wlroots wayland wayland-protocols pixman libxkbcommon cairo
|
|
pango fontconfig pandoc systemd
|
|
];
|
|
|
|
outputs = [ "out" "contrib" ];
|
|
|
|
mesonFlags = [
|
|
"-Dxwayland=${lib.boolToString withXwayland}"
|
|
"-Dversion_override=${version}"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $contrib/share/cagebreak
|
|
cp $src/examples/config $contrib/share/cagebreak/config
|
|
'';
|
|
|
|
postFixup = lib.optionalString withXwayland ''
|
|
wrapProgram $out/bin/cagebreak --prefix PATH : "${xwayland}/bin"
|
|
'';
|
|
|
|
passthru.tests.basic = nixosTests.cagebreak;
|
|
|
|
meta = with lib; {
|
|
description = "A Wayland tiling compositor inspired by ratpoison";
|
|
homepage = "https://github.com/project-repo/cagebreak";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ berbiche ];
|
|
};
|
|
}
|