diff options
author | Franz Geffke <franz@pantherx.org> | 2024-03-30 20:14:36 +0000 |
---|---|---|
committer | Franz Geffke <franz@pantherx.org> | 2024-03-30 20:14:36 +0000 |
commit | 8562b630b1f40c838f664b1f7bcf9b1a2abbac26 (patch) | |
tree | 8e60434e1c92d644c3bbf5c0e1a6259e055bfe11 /px | |
parent | ad3a0d423890167345c05cd4668effaef0c30758 (diff) |
px: qtutilities: Fixed unbound valiable
Diffstat (limited to 'px')
-rw-r--r-- | px/packages/qt.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/px/packages/qt.scm b/px/packages/qt.scm index 053bc5e..2ec7c6f 100644 --- a/px/packages/qt.scm +++ b/px/packages/qt.scm @@ -10,7 +10,8 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages qt) #:use-module (gnu packages build-tools) - #:use-module (srfi srfi-1)) + #:use-module (srfi srfi-1) + #:use-module (px packages desktop-tools)) (define (qt5-urls component version) "Return a list of URLs for VERSION of the Qt5 COMPONENT." |