diff options
author | Sisiutl <sisiutl@egregore.fun> | 2024-11-15 12:39:28 +0100 |
---|---|---|
committer | Sisiutl <sisiutl@egregore.fun> | 2024-11-15 12:39:28 +0100 |
commit | eefc2b4e71c02c4948c20c1c3feb9acc70ac5241 (patch) | |
tree | 6941e0b9b9d76ffe370a0946b82f4c6e9a0b9502 | |
parent | 6b7cac9680e112b90314c428c9a016f496c1232b (diff) |
remove split-monitor-workspaces
-rw-r--r-- | sigils/packages/hyprland.scm | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/sigils/packages/hyprland.scm b/sigils/packages/hyprland.scm index 1363fc2..84bcbc3 100644 --- a/sigils/packages/hyprland.scm +++ b/sigils/packages/hyprland.scm @@ -460,44 +460,6 @@ screen on Hyprland.") (description "hyprland plugin for separate sets of workspaces on each monitor") (license license:bsd-3))) -(define-public hyprland-0.44.1 - (package/inherit hyprland - (version "0.44.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://code.hyprland.org/hyprwm/Hyprland") - (commit (string-append "v" version)))) - (sha256 - (base32 "11vw1h9al4jvqprwbrmxvcpxwhvsjj398wbz4flqbnmxa8idvdq1")))))) - -(define-public split-monitor-workspaces - ;; 0.44.1 pin - (let ((hyprpm-pin "7c0cec6e8661facf252b2c974f214b60c4f87466") - (hyprland hyprland-0.44.1)) - (package - (name "split-monitor-workspaces") - (version (package-version hyprland)) - (home-page "https://github.com/Duckonaut/split-monitor-workspaces") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Duckonaut/split-monitor-workspaces") - (commit hyprpm-pin))) - (sha256 - (base32 "1i6xlpcgqz8xn8hxjynipv84hkpknsszf2h9adpx4ka5hndjg16i")))) - (build-system meson-build-system) - ;; Hyprland plugins need the same inputs as Hyprland, and Hyprland itself - (native-inputs (package-native-inputs hyprland)) - (inputs (modify-inputs (package-inputs hyprland) - (append hyprland))) - (arguments '(#:build-type "release")) - (synopsis "awesome / dwm like workspaces for hyprland") - (description "hyprland plugin for separate sets of workspaces on each monitor") - (license license:bsd-3)))) - (define (hyprland-plugins plugin syn) (package (name plugin) |