Merge pull request #311935 from clebs/wideriver

wideriver: init at 1.1.0
This commit is contained in:
Masum Reza 2024-06-26 02:07:25 +05:30 committed by GitHub
commit 42bd9223f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,40 @@
{
stdenv,
fetchFromGitHub,
lib,
wayland,
wayland-scanner,
pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "wideriver";
version = "1.1.0";
src = fetchFromGitHub {
owner = "alex-courtis";
repo = "wideriver";
rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-Jn3DfflDlMSZMlSRBfzQeEUKgYLctd/PiQRWH8uwtlU=";
};
nativeBuildInputs = [
pkg-config
wayland-scanner
];
buildInputs = [
wayland
];
installFlags = [ "PREFIX=$(out)" ];
meta = {
description = "Tiling window manager for the river wayland compositor, inspired by dwm and xmonad";
homepage = "https://github.com/alex-courtis/wideriver";
license = lib.licenses.gpl3Only;
mainProgram = "wideriver";
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ clebs ];
};
})