wideriver: init at 1.1.0
Signed-off-by: Borja Clemente <borja.clemente@gmail.com>
This commit is contained in:
parent
df548c62c9
commit
4697088fc0
40
pkgs/by-name/wi/wideriver/package.nix
Normal file
40
pkgs/by-name/wi/wideriver/package.nix
Normal 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 ];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user