river-bsp-layout: init at 2.1.0 (#349430)

This commit is contained in:
Aleksana 2024-10-20 11:11:25 +08:00 committed by GitHub
commit 6a2b062742
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 34 additions and 0 deletions

View File

@ -1708,6 +1708,12 @@
githubId = 718812;
name = "Antoine R. Dumont";
};
areif-dev = {
email = "aj@ajreifsnyder.com";
github = "areif-dev";
githubId = 53097078;
name = "AJ Reifsnyder";
};
arezvov = {
email = "alex@rezvov.ru";
github = "arezvov";

View File

@ -0,0 +1,28 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "river-bsp-layout";
version = "2.1.0";
src = fetchFromGitHub {
owner = "areif-dev";
repo = "river-bsp-layout";
rev = "v${version}";
hash = "sha256-LRVZPAS4V5PtrqyOkKUfrZuwLqPZbLoyjn2DPxCFE2o=";
};
cargoHash = "sha256-CtVyRwfIS8R48LUecKXoak+HHB5yNZ5RgguIWOhyFA8=";
meta = {
homepage = "https://github.com/areif-dev/river-bsp-layout";
description = "Binary space partition / grid layout manager for River WM";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ areif-dev ];
mainProgram = "river-bsp-layout";
platforms = lib.platforms.linux;
};
}