3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/rivercarro/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.3 KiB
Nix
Raw Normal View History

2022-01-13 22:07:48 +00:00
{ lib
, stdenv
, fetchFromSourcehut
, pkg-config
2022-01-13 22:07:48 +00:00
, river
, wayland
, wayland-protocols
, zig_0_11
2022-01-13 22:07:48 +00:00
}:
stdenv.mkDerivation (finalAttrs: {
2022-01-13 22:07:48 +00:00
pname = "rivercarro";
version = "0.3.0";
2022-01-13 22:07:48 +00:00
src = fetchFromSourcehut {
owner = "~novakane";
repo = "rivercarro";
rev = "v${finalAttrs.version}";
2022-01-13 22:07:48 +00:00
fetchSubmodules = true;
hash = "sha256-lucwn9MmyVd4pynuG/ZAXnZ384wdS0gi7JN44vNQA1I=";
2022-01-13 22:07:48 +00:00
};
nativeBuildInputs = [
pkg-config
river
wayland
wayland-protocols
zig_0_11.hook
2022-01-13 22:07:48 +00:00
];
meta = with lib; {
homepage = "https://git.sr.ht/~novakane/rivercarro";
description = "A layout generator for river Wayland compositor, fork of rivertile";
longDescription = ''
A slightly modified version of rivertile layout generator for river.
Compared to rivertile, rivercarro adds:
- Monocle layout, views will takes all the usable area on the screen.
- Gaps instead of padding around views or layout area.
- Modify gaps size at runtime.
- Smart gaps, if there is only one view, gaps will be disable.
- Limit the width of the usable area of the screen.
'';
changelog = "https://git.sr.ht/~novakane/rivercarro/refs/v${finalAttrs.version}";
2022-01-13 22:07:48 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ kraem ];
inherit (zig_0_11.meta) platforms;
2022-01-13 22:07:48 +00:00
};
})