diff options
author | Sisiutl <sisiutl@egregore.fun> | 2024-12-15 21:57:40 +0100 |
---|---|---|
committer | Sisiutl <sisiutl@egregore.fun> | 2024-12-15 21:57:40 +0100 |
commit | faba89739f9e99168fce33fb9cf8abdd92593cf5 (patch) | |
tree | 172687d838c4c117cbd91c4d21a3f5f066fe1b4d | |
parent | f22ccd1ee9310df3b7bf1865a3233136bcbff302 (diff) |
qt6ct got upstreamed!!
-rw-r--r-- | sigils/packages/python-xyz.scm | 47 | ||||
-rw-r--r-- | sigils/packages/qt.scm | 43 |
2 files changed, 0 insertions, 90 deletions
diff --git a/sigils/packages/python-xyz.scm b/sigils/packages/python-xyz.scm index 9546a3e..fe68e00 100644 --- a/sigils/packages/python-xyz.scm +++ b/sigils/packages/python-xyz.scm @@ -218,53 +218,6 @@ way. Based on the Lo-Dash Javascript library.") (description "Pytest plugin to check mypy output.") (license license:expat))) -;;; Discord.py-self - -(define-public python-discord-protos - (package - (name "python-discord-protos") - (version "0.0.2") - (source - (origin - (method url-fetch) - (uri (pypi-uri "discord-protos" version)) - (sha256 - (base32 "15y984m2la79g8rmvmy895m1k9ihfm2lpv08nx0dpvibyc2km593")))) - (build-system pyproject-build-system) - (inputs (list python-protobuf)) - (home-page "https://github.com/dolfies/discord-protos") - (synopsis "Discord user settings protobufs.") - (description "Discord user settings protobufs.") - (license license:expat))) - -(define-public python-discord.py-self - (package - (name "python-discord.py-self") - (version "2.0.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "discord.py-self" version)) - (sha256 - (base32 "05xyd7d1mzn3xsw6crl2bp8y0k71dk07jfadvk9w4x880vk3nr4g")))) - (build-system pyproject-build-system) - (inputs (list python-aiohttp - python-protobuf - python-discord-protos - python-typing-extensions)) - (native-inputs (list python-coverage - python-pytest - python-pytest-asyncio - python-pytest-cov - python-pytest-mock)) - (arguments - '(#:tests? #f)) - (home-page "https://github.com/dolfies/discord.py-self") - (synopsis "A Python wrapper for the Discord user API") - (description - "This package provides a Python wrapper for the Discord user API.") - (license license:expat))) - ;; (define-public python-picamera2 ;; (package ;; (name "python-picamera2") diff --git a/sigils/packages/qt.scm b/sigils/packages/qt.scm deleted file mode 100644 index 1e4ee79..0000000 --- a/sigils/packages/qt.scm +++ /dev/null @@ -1,43 +0,0 @@ -(define-module (sigils packages qt) - #:use-module (guix packages) - #:use-module (guix download) - #:use-module (guix gexp) - #:use-module ((guix licenses) - #:prefix license:) - ;; qt6ct - #:use-module (gnu packages qt) - #:use-module (gnu packages vulkan) - #:use-module (gnu packages xdisorg)) - -;; Qt6Ct - -(define-public qt6ct - (package - (inherit qt5ct) - (name "qt6ct") - (version "0.9") - (source - (origin - (method url-fetch) - (uri (string-append - "https://github.com/trialuser02/qt6ct/archive/refs/tags/" version - ".tar.gz")) - (sha256 - (base32 "0vl2x3livyik5mf8qg4zpkxx9zd1nglxxj6rgjadcbd8a7xw8jda")))) - (native-inputs (list qttools libxkbcommon vulkan-headers)) - (inputs (list qtsvg qtbase)) - (arguments - (list - #:tests? #f ;No target - #:phases #~(modify-phases %standard-phases - (add-after 'unpack 'patch - (lambda _ - (substitute* '("src/qt6ct-qtplugin/CMakeLists.txt" - "src/qt6ct-style/CMakeLists.txt") - (("\\$\\{PLUGINDIR\\}") - (string-append #$output "/lib/qt6/plugins")))))))) - (synopsis "Qt6 Configuration Tool") - (description - "Qt6CT is a program that allows users to configure Qt6 settings (such -as icons, themes, and fonts) in desktop environments or -+ window managers, that don't provide Qt integration by themselves."))) |