mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 01:57:39 +00:00
hyprlandPlugins.hyprsplit: init at 0.43.0 (#342075)
This commit is contained in:
commit
2fcb4a8f77
@ -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
|
||||
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user