hyprlandPlugins.hyprsplit: init at 0.43.0

This commit is contained in:
Alexandre Acebedo 2024-09-15 16:01:08 +02:00
parent 1f20f29afc
commit 5d0617ac82
No known key found for this signature in database
GPG Key ID: B1339A48715DBA20
2 changed files with 35 additions and 0 deletions

View File

@ -32,6 +32,7 @@ let
{ hyprgrass = import ./hyprgrass.nix; }
{ hyprscroller = import ./hyprscroller.nix; }
{ hyprspace = import ./hyprspace.nix; }
{ hyprsplit = import ./hyprsplit.nix; }
(import ./hyprland-plugins.nix)
];
in

View File

@ -0,0 +1,34 @@
{
lib,
meson,
fetchFromGitHub,
hyprland,
ninja,
mkHyprlandPlugin,
}:
mkHyprlandPlugin hyprland rec {
pluginName = "hyprsplit";
version = "0.43.0";
src = fetchFromGitHub {
owner = "shezdy";
repo = "hyprsplit";
rev = "refs/tags/v${version}";
hash = "sha256-r533kNIyfgPi/q8ddIYyDK1Pmupt/F3ncHuFo3zjDkU=";
};
nativeBuildInputs = [
meson
ninja
];
meta = {
homepage = "https://github.com/shezdy/hyprsplit";
description = "Hyprland plugin for awesome / dwm like workspaces";
license = lib.licenses.bsd3;
inherit (hyprland.meta) platforms;
maintainers = with lib.maintainers; [
aacebedo
];
};
}