.
This commit is contained in:
parent
e6db930101
commit
35ccb639b8
3 changed files with 416 additions and 269 deletions
|
@ -1,70 +1,132 @@
|
|||
(define-module (zilti packages hyprland)
|
||||
#:use-module (srfi srfi-1)
|
||||
#:use-module (ice-9 match)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix build-system meson)
|
||||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system qt)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (rosenthal packages freedesktop)
|
||||
#:use-module ((rosenthal packages wm) #:prefix rosenthal:)
|
||||
#:use-module (gnu packages admin)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages bison)
|
||||
#:use-module (gnu packages build-tools)
|
||||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages cpio)
|
||||
#:use-module (gnu packages docbook)
|
||||
#:use-module (gnu packages elf)
|
||||
#:use-module (gnu packages file)
|
||||
#:use-module (gnu packages flex)
|
||||
#:use-module (gnu packages fontutils)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
#:use-module (gnu packages gcc)
|
||||
#:use-module (gnu packages gettext)
|
||||
#:use-module (gnu packages ghostscript)
|
||||
#:use-module (gnu packages gl)
|
||||
#:use-module (gnu packages glib)
|
||||
#:use-module (gnu packages gnome)
|
||||
#:use-module (gnu packages gtk)
|
||||
#:use-module (gnu packages hardware)
|
||||
#:use-module (gnu packages image)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages ninja)
|
||||
#:use-module (gnu packages pciutils)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages qt)
|
||||
#:use-module (gnu packages version-control)
|
||||
#:use-module (gnu packages xdisorg)
|
||||
#:use-module (gnu packages vulkan)
|
||||
#:use-module (gnu packages web)
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module (gnu packages wm)
|
||||
#:use-module (gnu packages xorg)
|
||||
#:use-module ((zilti packages utilities) #:prefix utils:))
|
||||
(define-module
|
||||
(zilti packages hyprland)
|
||||
#:use-module
|
||||
(srfi srfi-1)
|
||||
#:use-module
|
||||
(ice-9 match)
|
||||
#:use-module
|
||||
(guix packages)
|
||||
#:use-module
|
||||
(guix download)
|
||||
#:use-module
|
||||
(guix gexp)
|
||||
#:use-module
|
||||
(guix build utils)
|
||||
#:use-module
|
||||
(guix utils)
|
||||
#:use-module
|
||||
(guix build-system meson)
|
||||
#:use-module
|
||||
(guix build-system cmake)
|
||||
#:use-module
|
||||
(guix build-system gnu)
|
||||
#:use-module
|
||||
(guix build-system qt)
|
||||
#:use-module
|
||||
((guix licenses)
|
||||
#:prefix license:)
|
||||
#:use-module
|
||||
(guix git-download)
|
||||
#:use-module
|
||||
(gnu packages)
|
||||
#:use-module
|
||||
(rosenthal packages freedesktop)
|
||||
#:use-module
|
||||
((rosenthal packages wm)
|
||||
#:prefix rosenthal:)
|
||||
#:use-module
|
||||
(gnu packages admin)
|
||||
#:use-module
|
||||
(gnu packages autotools)
|
||||
#:use-module
|
||||
(gnu packages base)
|
||||
#:use-module
|
||||
(gnu packages bash)
|
||||
#:use-module
|
||||
(gnu packages bison)
|
||||
#:use-module
|
||||
(gnu packages build-tools)
|
||||
#:use-module
|
||||
(gnu packages check)
|
||||
#:use-module
|
||||
(gnu packages compression)
|
||||
#:use-module
|
||||
(gnu packages cpio)
|
||||
#:use-module
|
||||
(gnu packages docbook)
|
||||
#:use-module
|
||||
(gnu packages elf)
|
||||
#:use-module
|
||||
(gnu packages file)
|
||||
#:use-module
|
||||
(gnu packages flex)
|
||||
#:use-module
|
||||
(gnu packages fontutils)
|
||||
#:use-module
|
||||
(gnu packages freedesktop)
|
||||
#:use-module
|
||||
(gnu packages gcc)
|
||||
#:use-module
|
||||
(gnu packages gettext)
|
||||
#:use-module
|
||||
(gnu packages ghostscript)
|
||||
#:use-module
|
||||
(gnu packages gl)
|
||||
#:use-module
|
||||
(gnu packages glib)
|
||||
#:use-module
|
||||
(gnu packages gnome)
|
||||
#:use-module
|
||||
(gnu packages gtk)
|
||||
#:use-module
|
||||
(gnu packages hardware)
|
||||
#:use-module
|
||||
(gnu packages image)
|
||||
#:use-module
|
||||
(gnu packages linux)
|
||||
#:use-module
|
||||
(gnu packages ninja)
|
||||
#:use-module
|
||||
(gnu packages pciutils)
|
||||
#:use-module
|
||||
(gnu packages pkg-config)
|
||||
#:use-module
|
||||
(gnu packages python)
|
||||
#:use-module
|
||||
(gnu packages qt)
|
||||
#:use-module
|
||||
(gnu packages version-control)
|
||||
#:use-module
|
||||
(gnu packages xdisorg)
|
||||
#:use-module
|
||||
(gnu packages vulkan)
|
||||
#:use-module
|
||||
(gnu packages web)
|
||||
#:use-module
|
||||
(gnu packages xml)
|
||||
#:use-module
|
||||
(gnu packages wm)
|
||||
#:use-module
|
||||
(gnu packages xorg)
|
||||
#:use-module
|
||||
((zilti packages utilities)
|
||||
#:prefix utils:))
|
||||
|
||||
(define-public tomlplusplus ;; SENT to Guix
|
||||
(package
|
||||
(name "tomlplusplus")
|
||||
(version "3.4.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/marzer/tomlplusplus")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"1hvbifzcc97r9jwjzpnq31ynqnj5y93cjz4frmgddnkg8hxmp6w7"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/marzer/tomlplusplus")
|
||||
(commit
|
||||
(string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"1hvbifzcc97r9jwjzpnq31ynqnj5y93cjz4frmgddnkg8hxmp6w7"))))
|
||||
(build-system meson-build-system)
|
||||
(native-inputs
|
||||
(list python utils:cmake))
|
||||
|
@ -77,178 +139,174 @@
|
|||
|
||||
(define-public libliftoff
|
||||
(package
|
||||
(name "libliftoff")
|
||||
(version "0.4.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.freedesktop.org/emersion/libliftoff")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"1ikjp638d655ycaqkdnzhb12d29kkbb3a46lqhbhsfc8vsqj3z1l"))))
|
||||
(build-system meson-build-system)
|
||||
(native-inputs
|
||||
(list utils:cmake
|
||||
pkg-config))
|
||||
(inputs
|
||||
(list libdrm))
|
||||
(home-page "https://gitlab.freedesktop.org/emersion/libliftoff/")
|
||||
(synopsis "Lightweight KMS plane library.")
|
||||
(description "libliftoff eases the use of KMS planes from userspace without standing in your
|
||||
(name "libliftoff")
|
||||
(version "0.4.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://gitlab.freedesktop.org/emersion/libliftoff")
|
||||
(commit
|
||||
(string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"1ikjp638d655ycaqkdnzhb12d29kkbb3a46lqhbhsfc8vsqj3z1l"))))
|
||||
(build-system meson-build-system)
|
||||
(native-inputs
|
||||
(list utils:cmake
|
||||
pkg-config))
|
||||
(inputs
|
||||
(list libdrm))
|
||||
(home-page "https://gitlab.freedesktop.org/emersion/libliftoff/")
|
||||
(synopsis "Lightweight KMS plane library.")
|
||||
(description "libliftoff eases the use of KMS planes from userspace without standing in your
|
||||
way. Users create \"virtual planes\" called layers, set KMS properties on them,
|
||||
and libliftoff will pick hardware planes for these layers if possible.")
|
||||
(license license:expat)))
|
||||
(license license:expat)))
|
||||
|
||||
(define cairo-for-hyprland
|
||||
(package
|
||||
(inherit cairo)
|
||||
(name "cairo")
|
||||
(version "1.18.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://cairographics.org/releases/cairo-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0r0by563s75xyzz0d0j1nmjqmdrk2x9agk7r57p3v8vqp4v0ffi4"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f
|
||||
#:glib-or-gtk? #t
|
||||
#:configure-flags
|
||||
#~(list "-Dspectre=disabled")))
|
||||
(outputs '("out"))))
|
||||
(inherit cairo)
|
||||
(name "cairo")
|
||||
(version "1.18.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append "https://cairographics.org/releases/cairo-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0r0by563s75xyzz0d0j1nmjqmdrk2x9agk7r57p3v8vqp4v0ffi4"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f
|
||||
#:glib-or-gtk? #t
|
||||
#:configure-flags
|
||||
#~(list "-Dspectre=disabled")))
|
||||
(outputs
|
||||
'("out"))))
|
||||
|
||||
(define hwdata-for-hyprland
|
||||
(package
|
||||
(inherit hwdata)
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments hwdata)
|
||||
((#:phases _) #~%standard-phases)))
|
||||
(outputs '("out"))))
|
||||
(inherit hwdata)
|
||||
(arguments
|
||||
(substitute-keyword-arguments
|
||||
(package-arguments hwdata)
|
||||
((#:phases _)
|
||||
#~%standard-phases)))
|
||||
(outputs
|
||||
'("out"))))
|
||||
|
||||
(define wayland-protocols-for-hyprland
|
||||
(package
|
||||
(inherit wayland-protocols)
|
||||
(name "wayland-protocols")
|
||||
(version "1.34")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://gitlab.freedesktop.org/wayland/wayland-protocols"
|
||||
"/-/releases/" version "/downloads/"
|
||||
"wayland-protocols-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1sxgvis0abkymc02nhx2svm60myiq3shvy759sphpxl5rp52g6y5"))))))
|
||||
|
||||
(define-public wlroots-hyprland
|
||||
(let ((base wlroots)
|
||||
(revision "255")
|
||||
(commit "50eae512d9cecbf0b3b1898bb1f0b40fa05fe19b"))
|
||||
(package
|
||||
(inherit base)
|
||||
(name "wlroots")
|
||||
(version (git-version "0.19.0" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.freedesktop.org/wlroots/wlroots.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0bwpppb86nfjg2lw62y449f9iz2v8djqb8n6g1cn45vqnwj8hxf1"))))
|
||||
(propagated-inputs
|
||||
(modify-inputs (package-propagated-inputs wlroots)
|
||||
(prepend libdrm-for-hyprland)
|
||||
(prepend xcb-util-renderutil)
|
||||
(replace "libinput-minimal" libinput-minimal-1.24.0)
|
||||
(replace "wayland-protocols" wayland-protocols-for-hyprland)))
|
||||
(native-inputs
|
||||
(modify-inputs (package-native-inputs base)
|
||||
(replace "hwdata" `(,hwdata-for-hyprland "out")))))))
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append
|
||||
"https://gitlab.freedesktop.org/wayland/wayland-protocols"
|
||||
"/-/releases/" version "/downloads/"
|
||||
"wayland-protocols-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1sxgvis0abkymc02nhx2svm60myiq3shvy759sphpxl5rp52g6y5"))))))
|
||||
|
||||
(define libdrm-for-hyprland
|
||||
(package
|
||||
(inherit libdrm)
|
||||
(name "libdrm")
|
||||
(version "2.4.120")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://dri.freedesktop.org/libdrm/libdrm-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0yijzgg6rdsa68bz03sw0lcfa2nclv9m3as1cja50wkcyxim7x9v"))))))
|
||||
(inherit libdrm)
|
||||
(name "libdrm")
|
||||
(version "2.4.120")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append
|
||||
"https://dri.freedesktop.org/libdrm/libdrm-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0yijzgg6rdsa68bz03sw0lcfa2nclv9m3as1cja50wkcyxim7x9v"))))))
|
||||
|
||||
(define-public hyprcursor
|
||||
(package
|
||||
(inherit rosenthal:hyprcursor)
|
||||
(name "hyprcursor")
|
||||
(version "0.1.7")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/hyprwm/hyprcursor.git")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"0s5x3nk2f48xl2z797f8s5jddmhpkg0ndw0jl7mirv9l23xmajag"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/hyprwm/hyprcursor.git")
|
||||
(commit
|
||||
(string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"0s5x3nk2f48xl2z797f8s5jddmhpkg0ndw0jl7mirv9l23xmajag"))))
|
||||
(inputs
|
||||
(modify-inputs (package-inputs rosenthal:hyprcursor)
|
||||
(append tomlplusplus)))))
|
||||
(modify-inputs
|
||||
(package-inputs rosenthal:hyprcursor)
|
||||
(append tomlplusplus)))))
|
||||
|
||||
(define-public hyprlang
|
||||
(package
|
||||
(inherit rosenthal:hyprlang)
|
||||
(name "hyprlang")
|
||||
(version "0.5.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/hyprwm/hyprlang")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"1vgvbnd6l5iymb66zdcslhs4w20a7i013qmf4jnxx10z1p8rfkg7"))))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/hyprwm/hyprlang")
|
||||
(commit
|
||||
(string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"1vgvbnd6l5iymb66zdcslhs4w20a7i013qmf4jnxx10z1p8rfkg7"))))))
|
||||
|
||||
(define-public hyprland
|
||||
(package
|
||||
(name "hyprland")
|
||||
(version "0.39.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/hyprwm/hyprland")
|
||||
(commit (string-append "v" version))
|
||||
(recursive? #t)))
|
||||
(sha256
|
||||
(base32
|
||||
"0v6xadkrl138irq43s7y747krdirqz9fskw74jbizs5nij1qm9qi"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/hyprwm/hyprland")
|
||||
(commit
|
||||
(string-append "v" version))
|
||||
(recursive? #t)))
|
||||
(sha256
|
||||
(base32
|
||||
"0v6xadkrl138irq43s7y747krdirqz9fskw74jbizs5nij1qm9qi"))))
|
||||
(build-system cmake-build-system )
|
||||
(arguments
|
||||
(list #:build-type "release"
|
||||
#:cmake utils:cmake
|
||||
#:parallel-build? #t
|
||||
#:out-of-source? #t
|
||||
#:tests? #f
|
||||
#:configure-flags #~(list "-DNO_XWAYLAND=1"
|
||||
"-DNO_SYSTEMD=1")
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(delete 'check)
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(with-directory-excursion
|
||||
"../source"
|
||||
(invoke "ln" "-s" "../build" "build")
|
||||
(invoke "make"
|
||||
(string-append "PREFIX=" #$output)
|
||||
"install")
|
||||
(invoke "make"
|
||||
(string-append "PREFIX=" #$output)
|
||||
"installheaders")))))))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(with-directory-excursion
|
||||
"../source"
|
||||
(invoke "ln" "-s" "../build" "build")
|
||||
(invoke "make"
|
||||
(string-append "PREFIX=" #$output)
|
||||
"install")
|
||||
(invoke "make"
|
||||
(string-append "PREFIX=" #$output)
|
||||
"installheaders")))))))
|
||||
(native-inputs
|
||||
(list cpio
|
||||
meson
|
||||
|
@ -287,18 +345,52 @@ effects, has a very flexible IPC model allowing for a lot of customization, and
|
|||
more.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public hyprland-xwayland
|
||||
(package
|
||||
(inherit hyprland)
|
||||
(name "hyprland-xwayland")
|
||||
(arguments
|
||||
(substitute-keyword-arguments
|
||||
(package-arguments hyprland)
|
||||
((#:configure-flags _)
|
||||
#~(list "-DNO_SYSTEMD=1"
|
||||
(string-append "-DCMAKE_IGNORE_PATH="
|
||||
#$(file-append xorg-server-xwayland "/include"))))
|
||||
((#:phases oldphases #~%standard-phases)
|
||||
#~(modify-phases #$oldphases
|
||||
(add-before 'configure 'fix-CMakeLists.txt
|
||||
(lambda _
|
||||
(invoke "sed" "-i" "s/xcb xwayland/xcb/g" "CMakeLists.txt")))))))
|
||||
(propagated-inputs
|
||||
(list xorg-server-xwayland))
|
||||
(native-inputs
|
||||
(modify-inputs
|
||||
(package-native-inputs hyprland)))
|
||||
(inputs
|
||||
(modify-inputs
|
||||
(package-inputs hyprland)
|
||||
(append libxcomposite)
|
||||
(append libxfixes)
|
||||
(append xcb-util)
|
||||
(append xcb-util-errors)
|
||||
(append xcb-util-image)
|
||||
(append xcb-util-wm)
|
||||
(append xorg-server-xwayland)))))
|
||||
|
||||
(define-public hyprland-plugin-hyprsplit
|
||||
(package
|
||||
(name "hyprland-plugin-hyprsplit")
|
||||
(version "3b71eaf")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/shezdy/hyprsplit.git")
|
||||
(commit version)))
|
||||
(sha256
|
||||
(base32
|
||||
"0cqr5h5lkwcadavsh9yx0xbc88rlr29s3zws1694ya8ayalbappx"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/shezdy/hyprsplit.git")
|
||||
(commit version)))
|
||||
(sha256
|
||||
(base32
|
||||
"0cqr5h5lkwcadavsh9yx0xbc88rlr29s3zws1694ya8ayalbappx"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
(list
|
||||
|
@ -329,14 +421,17 @@ more.")
|
|||
(package
|
||||
(name "hyprpaper")
|
||||
(version "0.6.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/hyprwm/hyprpaper.git")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"0bcb2jfnw5752h3lyflvl12v9m61yrdmff1ry2y98m42v1l6gb4s"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/hyprwm/hyprpaper.git")
|
||||
(commit
|
||||
(string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"0bcb2jfnw5752h3lyflvl12v9m61yrdmff1ry2y98m42v1l6gb4s"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
(list
|
||||
|
@ -348,9 +443,13 @@ more.")
|
|||
(invoke "make" "protocols")))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(let* ((output (assoc-ref %outputs "out"))
|
||||
(out-bin (string-append output "/bin")))
|
||||
(use-modules (guix build utils))
|
||||
(let*
|
||||
((output
|
||||
(assoc-ref %outputs "out"))
|
||||
(out-bin
|
||||
(string-append output "/bin")))
|
||||
(use-modules
|
||||
(guix build utils))
|
||||
(invoke "ls")
|
||||
(install-file "./hyprpaper"
|
||||
out-bin))))
|
||||
|
@ -380,14 +479,17 @@ more.")
|
|||
(package
|
||||
(name "hypridle")
|
||||
(version "0.1.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/hyprwm/hypridle.git")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"0k0izx34zp65lawl25n8my2m4yfql9zmfljlkz50k4yr8d9qbb31"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/hyprwm/hypridle.git")
|
||||
(commit
|
||||
(string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"0k0izx34zp65lawl25n8my2m4yfql9zmfljlkz50k4yr8d9qbb31"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
(list
|
||||
|
@ -410,14 +512,17 @@ more.")
|
|||
(package
|
||||
(name "hyprlock")
|
||||
(version "0.3.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/hyprwm/hyprlock.git")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"0w2a25hivn8xd8p05vc9xg57rd9siv12dwmr4skpqx4dcmxxbg5d"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/hyprwm/hyprlock.git")
|
||||
(commit
|
||||
(string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"0w2a25hivn8xd8p05vc9xg57rd9siv12dwmr4skpqx4dcmxxbg5d"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
(list
|
||||
|
@ -454,50 +559,58 @@ more.")
|
|||
|
||||
(define-public xdg-desktop-portal-hyprland
|
||||
(package
|
||||
(name "xdg-desktop-portal-hyprland")
|
||||
(version "1.3.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/hyprwm/xdg-desktop-portal-hyprland")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0fdbzxanmmzrvb9wfzg1pdsnlg7dl6v5k8bl44w10n48s7bbbzn0"))))
|
||||
(build-system qt-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f ;No tests
|
||||
#:qtbase qtbase
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-path
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* (find-files "." "\\.cp?*$")
|
||||
(("/bin/sh") "sh")
|
||||
(("\\<(sh|grim|hyprctl|slurp)\\>" _ cmd)
|
||||
(search-input-file inputs (string-append "/bin/" cmd)))
|
||||
(("\\<(hyprland-share-picker)\\>" _ cmd)
|
||||
(string-append #$output "/bin/" cmd))))))))
|
||||
(native-inputs
|
||||
(list gcc-13 pkg-config wayland))
|
||||
(inputs
|
||||
(list bash-minimal
|
||||
grim
|
||||
hyprland
|
||||
rosenthal:hyprland-protocols
|
||||
hyprlang
|
||||
mesa
|
||||
pipewire
|
||||
qtwayland
|
||||
sdbus-c++
|
||||
slurp
|
||||
wayland-protocols))
|
||||
(home-page "https://github.com/hyprwm/xdg-desktop-portal-hyprland")
|
||||
(synopsis "XDG Desktop Portal backend for Hyprland")
|
||||
(description
|
||||
"This package provides @code{xdg-desktop-portal-hyprland}, which extends
|
||||
(name "xdg-desktop-portal-hyprland")
|
||||
(version "1.3.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/hyprwm/xdg-desktop-portal-hyprland")
|
||||
(commit
|
||||
(string-append "v" version))))
|
||||
(file-name
|
||||
(git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0fdbzxanmmzrvb9wfzg1pdsnlg7dl6v5k8bl44w10n48s7bbbzn0"))))
|
||||
(build-system qt-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f ;No tests
|
||||
#:qtbase qtbase
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-path
|
||||
(lambda*
|
||||
(#:key inputs #:allow-other-keys)
|
||||
(substitute*
|
||||
(find-files "." "\\.cp?*$")
|
||||
(("/bin/sh")
|
||||
"sh")
|
||||
(("\\<(sh|grim|hyprctl|slurp)\\>" _ cmd)
|
||||
(search-input-file inputs
|
||||
(string-append "/bin/" cmd)))
|
||||
(("\\<(hyprland-share-picker)\\>" _ cmd)
|
||||
(string-append #$output "/bin/" cmd))))))))
|
||||
(native-inputs
|
||||
(list gcc-13 pkg-config wayland))
|
||||
(inputs
|
||||
(list bash-minimal
|
||||
grim
|
||||
hyprland
|
||||
rosenthal:hyprland-protocols
|
||||
hyprlang
|
||||
mesa
|
||||
pipewire
|
||||
qtwayland
|
||||
sdbus-c++
|
||||
slurp
|
||||
wayland-protocols))
|
||||
(home-page "https://github.com/hyprwm/xdg-desktop-portal-hyprland")
|
||||
(synopsis "XDG Desktop Portal backend for Hyprland")
|
||||
(description
|
||||
"This package provides @code{xdg-desktop-portal-hyprland}, which extends
|
||||
@code{xdg-desktop-portal-wlr} for Hyprland with support for
|
||||
@code{xdg-desktop-portal} screenshot and casting interfaces, while adding a few
|
||||
extra portals specific to Hyprland, mostly for window sharing.")
|
||||
(license license:bsd-3)))
|
||||
(license license:bsd-3)))
|
||||
|
|
32
zilti/packages/patches/zig-0.11-use-LIBRARY_PATH.patch
Normal file
32
zilti/packages/patches/zig-0.11-use-LIBRARY_PATH.patch
Normal file
|
@ -0,0 +1,32 @@
|
|||
diff -crB zig.orig/CMakeLists.txt zig/CMakeLists.txt
|
||||
*** zig.orig/CMakeLists.txt 2024-04-16 00:59:10.664981173 +0200
|
||||
--- zig/CMakeLists.txt 2024-04-16 01:01:00.747848186 +0200
|
||||
***************
|
||||
*** 904,909 ****
|
||||
--- 904,919 ----
|
||||
set(ZIG_PIE_ARG "")
|
||||
endif()
|
||||
|
||||
+ # Use LIBRARY_PATH
|
||||
+ string(REPLACE ":" ";" LIBRARY_PATH "$ENV{LIBRARY_PATH}")
|
||||
+ set(SEARCH_PATHS "")
|
||||
+
|
||||
+ foreach(PATH ${LIBRARY_PATH})
|
||||
+ list(APPEND SEARCH_PATHS "--search-prefix ${PATH}")
|
||||
+ endforeach()
|
||||
+
|
||||
+ list(JOIN SEARCH_PATHS " " SEARCH_PREFIXES)
|
||||
+
|
||||
# -Dno-langref is currently hardcoded because building the langref takes too damn long
|
||||
# To obtain these two forms of documentation, run zig build against stage3 rather than stage2.
|
||||
set(ZIG_BUILD_ARGS
|
||||
***************
|
||||
*** 919,924 ****
|
||||
--- 929,935 ----
|
||||
"-Dtarget=${ZIG_TARGET_TRIPLE}"
|
||||
"-Dcpu=${ZIG_TARGET_MCPU}"
|
||||
"-Dversion-string=${RESOLVED_ZIG_VERSION}"
|
||||
+ "${SEARCH_PREFIXES}"
|
||||
)
|
||||
|
||||
add_custom_target(stage3 ALL
|
|
@ -38,6 +38,8 @@
|
|||
(url "https://github.com/ziglang/zig.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(patches (search-patches
|
||||
"zig-0.11-use-LIBRARY_PATH.patch"))
|
||||
(sha256
|
||||
(base32 "0qh7c27cd4wcdjj0mbpkarvwypfk1js8hkyxs0z149qv75zkbrca"))))
|
||||
(arguments
|
||||
|
|
Loading…
Reference in a new issue