wideriver: init at 1.1.0

Signed-off-by: Borja Clemente <borja.clemente@gmail.com>
This commit is contained in:
Borja Clemente 2024-05-15 15:35:49 +02:00
parent df548c62c9
commit 4697088fc0
No known key found for this signature in database
GPG Key ID: 2539757EF64C60DD

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 ];
};
})