Merge
This commit is contained in:
parent
33e161f763
commit
4783757141
1 changed files with 28 additions and 17 deletions
|
@ -262,7 +262,14 @@ command line tool called @code{udcli} that incorporates the library.")
|
||||||
(invoke "make"
|
(invoke "make"
|
||||||
(string-append "PREFIX=" #$output)
|
(string-append "PREFIX=" #$output)
|
||||||
"installheaders")))))))
|
"installheaders")))))))
|
||||||
(native-inputs (list cmake gcc-13 jq pkg-config cpio))
|
(native-inputs
|
||||||
|
(list cmake
|
||||||
|
cpio
|
||||||
|
gcc-13
|
||||||
|
jq
|
||||||
|
pkg-config
|
||||||
|
rosenthal:hyprland-protocols
|
||||||
|
eglexternalplatform))
|
||||||
(inputs
|
(inputs
|
||||||
(list cairo-for-hyprland
|
(list cairo-for-hyprland
|
||||||
gcc-13
|
gcc-13
|
||||||
|
@ -286,36 +293,40 @@ effects, has a very flexible IPC model allowing for a lot of customization, and
|
||||||
more.")
|
more.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public hyprland-split-monitor-workspaces
|
(define-public hyprland-plugin-hyprsplit
|
||||||
(package
|
(package
|
||||||
(name "hyprland-split-monitor-workspaces")
|
(name "hyprland-plugin-hyprsplit")
|
||||||
(version "d0012b8")
|
(version "8a542c2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/Duckonaut/split-monitor-workspaces.git")
|
(url "https://github.com/shezdy/hyprsplit.git")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0651nvj9a9hccb699akfpv6p3s886pajmafs05c2va4bxwnhp9yy"))))
|
"1lk2z2xm13cp94lg538k8a10n0bnydxz4scacnn2hfzfy1kvqrd7"))))
|
||||||
(build-system gnu-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
#:configure-flags #~(list "-Dcpp_std=none" "-Dcpp_args=-std=gnu++2b")
|
||||||
#:phases #~(modify-phases %standard-phases
|
#:phases #~(modify-phases %standard-phases
|
||||||
(delete 'configure))))
|
(delete 'check))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list gcc-13
|
(list cmake
|
||||||
|
gcc-13
|
||||||
pkg-config
|
pkg-config
|
||||||
|
rosenthal:hyprland-protocols
|
||||||
|
wlroots-for-hyprland))
|
||||||
|
(inputs
|
||||||
|
(list cairo-for-hyprland
|
||||||
hyprland
|
hyprland
|
||||||
cairo-for-hyprland
|
|
||||||
libdrm-for-hyprland
|
|
||||||
rosenthal:hyprlang
|
rosenthal:hyprlang
|
||||||
pixman
|
libdrm-for-hyprland
|
||||||
wlroots-for-hyprland
|
libinput
|
||||||
jq))
|
pixman))
|
||||||
(home-page "https://github.com/Duckonaut/split-monitor-workspaces.git")
|
(home-page "https://github.com/shezdy/hyprsplit")
|
||||||
(synopsis "A small Hyprland plugin to provide awesome-like workspace behavior")
|
(synopsis "hyprland plugin for separate sets of workspaces on each monitor")
|
||||||
(description "A small plugin to provide awesome/dwm-like behavior with workspaces: split them between monitors and provide independent numbering.")
|
(description "A complete rewrite of split-monitor-workspaces that attempts to fix the issues I experienced with it.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public hyprpaper
|
(define-public hyprpaper
|
||||||
|
|
Loading…
Reference in a new issue