Unverified Commit 6a2b0627 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

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

parents 1e922a02 a1cba1a4
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+28 −0
Original line number Diff line number Diff line
{
  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;
  };
}