diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2025-01-04 05:25:57 +0000 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2025-01-06 12:26:03 -0500 |
commit | 8f261686ec0e5a988935e76e5495898e036f9fa7 (patch) | |
tree | 3b72786b724615f3297a3c3458230254ddf799f2 | |
parent | 84a68cffe6abf1056df2607e79ef587b63820a6e (diff) | |
download | guix-8f261686ec0e5a988935e76e5495898e036f9fa7.tar.gz guix-8f261686ec0e5a988935e76e5495898e036f9fa7.zip |
gnu: Add hyprland-qtutils.
* gnu/packages/qt.scm (hyprland-qtutils): New variable.
Change-Id: I11d1460e29e456c3f69ea3bf018ef9f19969e342
-rw-r--r-- | gnu/packages/qt.scm | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index be6cae57bb..76c11af543 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -33,6 +33,7 @@ ;;; Copyright © 2023 Simon South <simon@simonsouth.net> ;;; Copyright © 2024 Foundation Devices, Inc. <hello@foundation.xyz> ;;; Copyright © 2024 Josep Bigorra <jjbigorra@gmail.com> +;;; Copyright © 2025 John Kehayias <john.kehayias@protonmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -5397,6 +5398,42 @@ also compatible with SGI and TGS Open Inventor, and the API is based on the API of the InventorXt GUI component toolkit.") (license license:bsd-3))) +(define-public hyprland-qtutils + (package + (name "hyprland-qtutils") + (version "0.1.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hyprwm/hyprland-qtutils") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "02ymf8xypnxhknb3d0bxbp96hargwrg9syb9xs3va3rmx909r7b6")))) + (build-system qt-build-system) + (arguments + (list #:tests? #f ;There are no tests. + #:qtbase qtbase)) + (native-inputs (list gcc-14 pkg-config)) + (inputs + (list bash-minimal + hyprutils + kirigami + libxkbcommon + qqc2-desktop-style + qtbase + qtdeclarative + qtwayland + wayland)) + (home-page "https://github.com/hyprwm/hyprland-qtutils") + (synopsis "Hyprland QT/QML utility apps") + (description + "This package provides some QT/QML utilities that might be used by +various hypr* apps.") + (license license:bsd-3))) + + (define-public libdbusmenu-qt (package (name "libdbusmenu-qt") |