diff options
author | Sisiutl <sisiutl@egregore.fun> | 2025-06-23 08:44:13 +0200 |
---|---|---|
committer | Sisiutl <sisiutl@egregore.fun> | 2025-06-23 08:44:13 +0200 |
commit | 97e054090daf2d49c8461e95d2354ca870bd28a4 (patch) | |
tree | 3e8987a6ad6cbeb971c5e57c39400544463b952d | |
parent | 7f3cb3dcbe7bb0765339667af552b5be16d0e5c1 (diff) |
drop merged hypr-
-rw-r--r-- | sigils/packages/hyprland.scm | 85 |
1 files changed, 0 insertions, 85 deletions
diff --git a/sigils/packages/hyprland.scm b/sigils/packages/hyprland.scm index 563be60..d8ff355 100644 --- a/sigils/packages/hyprland.scm +++ b/sigils/packages/hyprland.scm @@ -40,91 +40,6 @@ ;;; aquamarine: eudev in guix version ;;; hyprland: binutils, pciutils, re2-next / pas glib, libxcb, tomlplusplus -(define-public hyprpaper - (package - (name "hyprpaper") - (version "0.7.4") - (home-page "https://hyprland.org/") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://code.hyprland.org/hyprwm/hyprpaper") - (commit (string-append "v" version)))) - (sha256 - (base32 "151r6s04yy3digl3g6gs49xx41yv4xldmbnqr87gp5nz705hjsd6")))) - (build-system cmake-build-system) - (native-inputs (list gcc-14 ;; TODO: remove this when GCC 13 is the default - pkg-config - hyprwayland-scanner)) - (inputs (list wayland - wayland-protocols - cairo - pango - libglvnd - libjpeg-turbo - libwebp - hyprlang - hyprutils - hyprgraphics)) - (arguments '(#:tests? #f ;; No tests - #:build-type "release")) - (synopsis "Wallpaper utility with IPC controls") - (description "Hyprpaper is a wallpaper utility for Hyprland with the -ability to dynamically change wallpapers through sockets") - (license license:bsd-3))) - -(define-public hyprlock - (package - (name "hyprlock") - (version "0.6.2") - (home-page "https://hyprland.org/") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://code.hyprland.org/hyprwm/hyprlock") - (commit (string-append "v" version)))) - (sha256 - (base32 "12y7b505lfdp1m6wjgf030ffr7nj864rzhzzch221xvschv672ry")))) - (build-system cmake-build-system) - (native-inputs (list gcc-14 ;; TODO: remove this when GCC 13 is the default - pkg-config - hyprwayland-scanner)) - (inputs (list cairo - file - libdrm - libglvnd - libjpeg-turbo - libwebp - libxkbcommon - mesa-opengl - hyprlang - hyprutils - hyprgraphics - linux-pam - pango - sdbus-c++ - wayland - wayland-protocols)) - (arguments - (list #:tests? #f ;; No tests - #:build-type "release" - #:phases - #~(modify-phases %standard-phases - (add-after 'install 'wrap-program - (lambda* (#:key inputs outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (bin (string-append out "/bin/hyprlock")) - (mesa (assoc-ref inputs "mesa"))) - (wrap-program bin - `("__EGL_VENDOR_LIBRARY_DIRS" = - (,(string-append mesa "/share/glvnd/egl_vendor.d")))))))))) - (synopsis "GPU-accelerated screen locking utility") - (description "Hyprland's multi-threaded and GPU-accelerated screen locking -utility.") - (license license:bsd-3))) - (define-public hyprsunset (package (name "hyprsunset") |