mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
36 lines
694 B
Nix
36 lines
694 B
Nix
{
|
|
lib,
|
|
meson,
|
|
fetchFromGitHub,
|
|
ninja,
|
|
mkHyprlandPlugin,
|
|
nix-update-script,
|
|
}:
|
|
mkHyprlandPlugin (finalAttrs: {
|
|
pluginName = "hyprsplit";
|
|
version = "0.52.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "shezdy";
|
|
repo = "hyprsplit";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-XlOZr7BKii0ch24ZtOqjeVl1+uGewW5XQTSteKxXg9c=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/shezdy/hyprsplit";
|
|
description = "Hyprland plugin for awesome / dwm like workspaces";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [
|
|
aacebedo
|
|
];
|
|
};
|
|
})
|