niksos/homes/jacek/gui/hypr/split-monitor-workspaces/default.nix

24 lines
660 B
Nix

{
lib,
stdenv,
hyprland,
}: stdenv.mkDerivation {
name = "split-monitor-workspaces";
src = lib.fetchFromGithub {
owner = "Duckonaut";
repo = "split-monitor-workspaces";
rev = "07696f7f8d2681c3c9d4d0d2f99c679cb941e8e7";
sha256 = "";
};
inherit (hyprland) nativeBuildInputs;
buildInputs = [hyprland] ++ hyprland.buildInputs;
meta = with lib; {
homepage = "https://github.com/Duckonaut/split-monitor-workspaces";
description = "A small Hyprland plugin to provide awesome-like workspace behavior";
license = licenses.bsd3;
platforms = platforms.linux;
};
}