summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-08-09 14:03:01 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-08-22 12:32:20 -0400
commit5586a53d89bfa37cc3b8a6f046af7e04536c618f (patch)
tree865330eaac60555b406db72c2c2002b2bae16a14 /gnu
parent91c8bd01f8e0b09f561d1021462ef99409ce87c8 (diff)
gnu: qt: Streamline qt-urls.
* gnu/packages/qt.scm (qt-urls): Rename to... (qt-url): ... this. Return a single URL built using the mirror:// scheme. Adjust all callers accordingly.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/qt.scm124
1 files changed, 58 insertions, 66 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 20f29cf7062..935345f0e9a 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -125,6 +125,7 @@
125 #:use-module (gnu packages xiph) 125 #:use-module (gnu packages xiph)
126 #:use-module (gnu packages xorg) 126 #:use-module (gnu packages xorg)
127 #:use-module (gnu packages xml) 127 #:use-module (gnu packages xml)
128 #:use-module (ice-9 match)
128 #:use-module (srfi srfi-1)) 129 #:use-module (srfi srfi-1))
129 130
130(define %qt-version "5.15.8") 131(define %qt-version "5.15.8")
@@ -341,27 +342,18 @@ other text such as code. The syntax uses the syntax of the Django template
341system, and the core design of Django is reused in Grantlee.") 342system, and the core design of Django is reused in Grantlee.")
342 (license license:lgpl2.1+))) 343 (license license:lgpl2.1+)))
343 344
344(define (qt-urls component version) 345(define (qt-url component version)
345 "Return a list of URLs for VERSION of the Qt5 COMPONENT." 346 "Return a mirror URL for the Qt5 COMPONENT at VERSION."
346 ;; We can't use a mirror:// scheme because these URLs are not exact copies: 347 ;; We can't use a mirror:// scheme because these URLs are not exact copies:
347 ;; the layout differs between them. 348 ;; the layout differs between them.
348 (list (string-append "https://download.qt.io/official_releases/qt/" 349 (let ((x (match (version-major version)
349 (version-major+minor version) "/" version 350 ("5" "-everywhere-opensource-src-")
350 "/submodules/" component "-everywhere-opensource-src-" 351 ;; Version 6 and later dropped 'opensource' from the archive
351 version ".tar.xz") 352 ;; names.
352 (string-append "https://download.qt.io/official_releases/qt/" 353 (_ "-everywhere-src-"))))
353 (version-major+minor version) "/" version 354 (string-append "mirror://qt/qt/"
354 "/submodules/" component "-everywhere-src-" 355 (version-major+minor version) "/" version
355 version ".tar.xz") 356 "/submodules/" component x version ".tar.xz")))
356 (string-append "https://download.qt.io/archive/qt/"
357 (version-major+minor version) "/" version
358 "/submodules/" component "-everywhere-opensource-src-"
359 version ".tar.xz")
360 (let ((directory (string-append "qt5" (string-drop component 2))))
361 (string-append "http://sources.buildroot.net/" directory "/"
362 component "-everywhere-opensource-src-" version ".tar.xz"))
363 (string-append "https://distfiles.macports.org/qt5/"
364 component "-everywhere-opensource-src-" version ".tar.xz")))
365 357
366(define-public qtbase-5 358(define-public qtbase-5
367 (package 359 (package
@@ -369,7 +361,7 @@ system, and the core design of Django is reused in Grantlee.")
369 (version %qt-version) 361 (version %qt-version)
370 (source (origin 362 (source (origin
371 (method url-fetch) 363 (method url-fetch)
372 (uri (qt-urls name version)) 364 (uri (qt-url name version))
373 (sha256 365 (sha256
374 (base32 366 (base32
375 "175ynjndpzsw69vnsq4swykn9f48568ww9b4z3yw7azkqwk13cdz")) 367 "175ynjndpzsw69vnsq4swykn9f48568ww9b4z3yw7azkqwk13cdz"))
@@ -622,7 +614,7 @@ developers using C++ or QML, a CSS & JavaScript like language.")
622 (version "6.3.2") 614 (version "6.3.2")
623 (source (origin 615 (source (origin
624 (inherit (package-source qtbase-5)) 616 (inherit (package-source qtbase-5))
625 (uri (qt-urls name version)) 617 (uri (qt-url name version))
626 (sha256 618 (sha256
627 (base32 619 (base32
628 "19m9r8sf9mvyrwipn44if3nhding4ljys2mwf04b7dkhz16vlabr")) 620 "19m9r8sf9mvyrwipn44if3nhding4ljys2mwf04b7dkhz16vlabr"))
@@ -925,7 +917,7 @@ developers using C++ or QML, a CSS & JavaScript like language.")
925 (version %qt-version) 917 (version %qt-version)
926 (source (origin 918 (source (origin
927 (method url-fetch) 919 (method url-fetch)
928 (uri (qt-urls name version)) 920 (uri (qt-url name version))
929 (sha256 921 (sha256
930 (base32 922 (base32
931 "18hbv4l9w0czaxcch6af9130fgs4sf400xp0pfzl81c78fwrkfsb")))) 923 "18hbv4l9w0czaxcch6af9130fgs4sf400xp0pfzl81c78fwrkfsb"))))
@@ -987,7 +979,7 @@ HostData=lib/qt5"
987 (version "6.3.2") 979 (version "6.3.2")
988 (source (origin 980 (source (origin
989 (method url-fetch) 981 (method url-fetch)
990 (uri (qt-urls name version)) 982 (uri (qt-url name version))
991 (sha256 983 (sha256
992 (base32 984 (base32
993 "1k30hnwnlbay1hnkdavgf6plsdzrryzcqd2qz8x11r477w7sr8wi")))) 985 "1k30hnwnlbay1hnkdavgf6plsdzrryzcqd2qz8x11r477w7sr8wi"))))
@@ -1017,7 +1009,7 @@ came with the @{qtgraphicaleffects} Qt 5 package.")
1017 (version %qt-version) 1009 (version %qt-version)
1018 (source (origin 1010 (source (origin
1019 (method url-fetch) 1011 (method url-fetch)
1020 (uri (qt-urls name version)) 1012 (uri (qt-url name version))
1021 (sha256 1013 (sha256
1022 (base32 1014 (base32
1023 "0qnmcvp5jap4qq9w7xak66g6fsb48q1lg02rn4lycvnhgwzblbww")))) 1015 "0qnmcvp5jap4qq9w7xak66g6fsb48q1lg02rn4lycvnhgwzblbww"))))
@@ -1085,7 +1077,7 @@ HostData=lib/qt5
1085 (version "6.3.2") 1077 (version "6.3.2")
1086 (source (origin 1078 (source (origin
1087 (method url-fetch) 1079 (method url-fetch)
1088 (uri (qt-urls name version)) 1080 (uri (qt-url name version))
1089 (sha256 1081 (sha256
1090 (base32 1082 (base32
1091 "14i3f23k9k0731akpwa6zzhw5m3c0m2l5r7irvim4h4faah445ac")))) 1083 "14i3f23k9k0731akpwa6zzhw5m3c0m2l5r7irvim4h4faah445ac"))))
@@ -1116,7 +1108,7 @@ HostData=lib/qt5
1116 (version %qt-version) 1108 (version %qt-version)
1117 (source (origin 1109 (source (origin
1118 (method url-fetch) 1110 (method url-fetch)
1119 (uri (qt-urls name version)) 1111 (uri (qt-url name version))
1120 (sha256 1112 (sha256
1121 (base32 1113 (base32
1122 "0c6fq9zcw5hbkiny56wx2fbm123x14l7habydv6zhvnhn3rhwi31")) 1114 "0c6fq9zcw5hbkiny56wx2fbm123x14l7habydv6zhvnhn3rhwi31"))
@@ -1143,7 +1135,7 @@ support for MNG, TGA, TIFF and WBMP image formats.")))
1143 (version %qt-version) 1135 (version %qt-version)
1144 (source (origin 1136 (source (origin
1145 (method url-fetch) 1137 (method url-fetch)
1146 (uri (qt-urls name version)) 1138 (uri (qt-url name version))
1147 (sha256 1139 (sha256
1148 (base32 1140 (base32
1149 "1gzmf0y2byzrgfbing7xk3cwlbk1cyjlhqjbfh8n37y09gg65maf")))) 1141 "1gzmf0y2byzrgfbing7xk3cwlbk1cyjlhqjbfh8n37y09gg65maf"))))
@@ -1209,7 +1201,7 @@ XLSX document format.")
1209 (version %qt-version) 1201 (version %qt-version)
1210 (source (origin 1202 (source (origin
1211 (method url-fetch) 1203 (method url-fetch)
1212 (uri (qt-urls name version)) 1204 (uri (qt-url name version))
1213 (sha256 1205 (sha256
1214 (base32 1206 (base32
1215 "1inf7ar32a557faqpwdsmafhz1p6k8hywpw3wbsdjlj74dkgdq35")))) 1207 "1inf7ar32a557faqpwdsmafhz1p6k8hywpw3wbsdjlj74dkgdq35"))))
@@ -1238,7 +1230,7 @@ xmlpatternsvalidator.")))
1238 (version %qt-version) 1230 (version %qt-version)
1239 (source (origin 1231 (source (origin
1240 (method url-fetch) 1232 (method url-fetch)
1241 (uri (qt-urls name version)) 1233 (uri (qt-url name version))
1242 (sha256 1234 (sha256
1243 (base32 1235 (base32
1244 "1kb8nj17vmnky0ayiwypim7kf6rmlmfcjf6gnrw8rydmp61w0vh2")))) 1236 "1kb8nj17vmnky0ayiwypim7kf6rmlmfcjf6gnrw8rydmp61w0vh2"))))
@@ -1284,7 +1276,7 @@ with JavaScript and C++.")))
1284 ;; TODO: Package 'masm' and unbundle from sources. 1276 ;; TODO: Package 'masm' and unbundle from sources.
1285 (source (origin 1277 (source (origin
1286 (method url-fetch) 1278 (method url-fetch)
1287 (uri (qt-urls name version)) 1279 (uri (qt-url name version))
1288 (sha256 1280 (sha256
1289 (base32 1281 (base32
1290 "1hbw63828pp8vm9b46i2pkcbcpr4mq9nblhmpwrw2pflq0fi24xq")))) 1282 "1hbw63828pp8vm9b46i2pkcbcpr4mq9nblhmpwrw2pflq0fi24xq"))))
@@ -1416,7 +1408,7 @@ integrate QML code with JavaScript and C++.")
1416 (version %qt-version) 1408 (version %qt-version)
1417 (source (origin 1409 (source (origin
1418 (method url-fetch) 1410 (method url-fetch)
1419 (uri (qt-urls name version)) 1411 (uri (qt-url name version))
1420 (sha256 1412 (sha256
1421 (base32 1413 (base32
1422 "1j6qgkg77ycwcjxnhh38i9np1z8pjsqrzvfk3zsyq07f6k563fnc")))) 1414 "1j6qgkg77ycwcjxnhh38i9np1z8pjsqrzvfk3zsyq07f6k563fnc"))))
@@ -1434,7 +1426,7 @@ with Bluetooth and NFC.")))
1434 (version %qt-version) 1426 (version %qt-version)
1435 (source (origin 1427 (source (origin
1436 (method url-fetch) 1428 (method url-fetch)
1437 (uri (qt-urls name version)) 1429 (uri (qt-url name version))
1438 (sha256 1430 (sha256
1439 (base32 1431 (base32
1440 "12h520lpj2pljgkyq36p1509mw4pxgb76n30d32kg52crjsk34pa")))) 1432 "12h520lpj2pljgkyq36p1509mw4pxgb76n30d32kg52crjsk34pa"))))
@@ -1457,7 +1449,7 @@ consume data received from the server, or both.")))
1457 (version "6.3.2") 1449 (version "6.3.2")
1458 (source (origin 1450 (source (origin
1459 (method url-fetch) 1451 (method url-fetch)
1460 (uri (qt-urls name version)) 1452 (uri (qt-url name version))
1461 (sha256 1453 (sha256
1462 (base32 1454 (base32
1463 "1smbvidaybphvsmaap9v1pbkibwmng11hb925g0ww4ghwzpxkb8q")))) 1455 "1smbvidaybphvsmaap9v1pbkibwmng11hb925g0ww4ghwzpxkb8q"))))
@@ -1497,7 +1489,7 @@ consume data received from the server, or both.")
1497 (version %qt-version) 1489 (version %qt-version)
1498 (source (origin 1490 (source (origin
1499 (method url-fetch) 1491 (method url-fetch)
1500 (uri (qt-urls name version)) 1492 (uri (qt-url name version))
1501 (sha256 1493 (sha256
1502 (base32 1494 (base32
1503 "1fdpgbikvxjacyipcyac0czqhv96pvc75dl9cyafslws8m53fm56")))) 1495 "1fdpgbikvxjacyipcyac0czqhv96pvc75dl9cyafslws8m53fm56"))))
@@ -1526,7 +1518,7 @@ recognition API for devices.")))
1526 (version %qt-version) 1518 (version %qt-version)
1527 (source (origin 1519 (source (origin
1528 (method url-fetch) 1520 (method url-fetch)
1529 (uri (qt-urls name version)) 1521 (uri (qt-url name version))
1530 (sha256 1522 (sha256
1531 (base32 1523 (base32
1532 "1fz0ffpckvbg6qfhab2rrzfnvh4mlalqxcn0kbkd21mi44apjirk")) 1524 "1fz0ffpckvbg6qfhab2rrzfnvh4mlalqxcn0kbkd21mi44apjirk"))
@@ -1570,7 +1562,7 @@ set of plugins for interacting with pulseaudio and GStreamer.")))
1570 (version "6.3.2") 1562 (version "6.3.2")
1571 (source (origin 1563 (source (origin
1572 (method url-fetch) 1564 (method url-fetch)
1573 (uri (qt-urls name version)) 1565 (uri (qt-url name version))
1574 ;; Note: the source bundles *patched* glslang and SPIRV-Cross 1566 ;; Note: the source bundles *patched* glslang and SPIRV-Cross
1575 ;; sources. 1567 ;; sources.
1576 (sha256 1568 (sha256
@@ -1599,7 +1591,7 @@ Vulkan, OpenGL and other main graphic APIs.")
1599 (version "6.3.2") 1591 (version "6.3.2")
1600 (source (origin 1592 (source (origin
1601 (method url-fetch) 1593 (method url-fetch)
1602 (uri (qt-urls name version)) 1594 (uri (qt-url name version))
1603 (sha256 1595 (sha256
1604 (base32 1596 (base32
1605 "0hqwq0ad6z8c5kyyvbaddj00mciijn2ns2r60jc3mqh98nm2js3z")) 1597 "0hqwq0ad6z8c5kyyvbaddj00mciijn2ns2r60jc3mqh98nm2js3z"))
@@ -1665,7 +1657,7 @@ set of plugins for interacting with pulseaudio and GStreamer.")
1665 (version %qt-version) 1657 (version %qt-version)
1666 (source (origin 1658 (source (origin
1667 (method url-fetch) 1659 (method url-fetch)
1668 (uri (qt-urls name version)) 1660 (uri (qt-url name version))
1669 (patches (search-patches "qtwayland-gcc-11.patch" 1661 (patches (search-patches "qtwayland-gcc-11.patch"
1670 "qtwayland-dont-recreate-callbacks.patch" 1662 "qtwayland-dont-recreate-callbacks.patch"
1671 "qtwayland-cleanup-callbacks.patch")) 1663 "qtwayland-cleanup-callbacks.patch"))
@@ -1715,7 +1707,7 @@ compositor libraries.")))
1715 (source 1707 (source
1716 (origin 1708 (origin
1717 (method url-fetch) 1709 (method url-fetch)
1718 (uri (qt-urls name version)) 1710 (uri (qt-url name version))
1719 (sha256 1711 (sha256
1720 (base32 "0rwiirkibgpvx05pg2842j4dcq9ckxmcqxhaf50xx2i55z64ll83")))) 1712 (base32 "0rwiirkibgpvx05pg2842j4dcq9ckxmcqxhaf50xx2i55z64ll83"))))
1721 (build-system cmake-build-system) 1713 (build-system cmake-build-system)
@@ -1765,7 +1757,7 @@ compositor libraries.")
1765 (version %qt-version) 1757 (version %qt-version)
1766 (source (origin 1758 (source (origin
1767 (method url-fetch) 1759 (method url-fetch)
1768 (uri (qt-urls name version)) 1760 (uri (qt-url name version))
1769 (sha256 1761 (sha256
1770 (base32 1762 (base32
1771 "04i8pdyml1sw4dkk9vyw2xy5bz3fp6f90fws7ag5y8iizfgs5v2v")))) 1763 "04i8pdyml1sw4dkk9vyw2xy5bz3fp6f90fws7ag5y8iizfgs5v2v"))))
@@ -1796,7 +1788,7 @@ interacting with serial ports from within Qt.")))
1796 (version %qt-version) 1788 (version %qt-version)
1797 (source (origin 1789 (source (origin
1798 (method url-fetch) 1790 (method url-fetch)
1799 (uri (qt-urls name version)) 1791 (uri (qt-url name version))
1800 (sha256 1792 (sha256
1801 (base32 1793 (base32
1802 "0ws3pjbp4g8f49k8q0qa5hgyisbyk3m7kl8pwzkfws048glvz570")))) 1794 "0ws3pjbp4g8f49k8q0qa5hgyisbyk3m7kl8pwzkfws048glvz570"))))
@@ -1823,7 +1815,7 @@ and others.")))
1823 (version %qt-version) 1815 (version %qt-version)
1824 (source (origin 1816 (source (origin
1825 (method url-fetch) 1817 (method url-fetch)
1826 (uri (qt-urls name version)) 1818 (uri (qt-url name version))
1827 (sha256 1819 (sha256
1828 (base32 1820 (base32
1829 "1pfmy6fqis47awjb590r63y13vvsfm0fq70an3ylsknhyq3firgn")))) 1821 "1pfmy6fqis47awjb590r63y13vvsfm0fq70an3ylsknhyq3firgn"))))
@@ -1841,7 +1833,7 @@ popular web engines, Qt WebKit 2 and Qt WebEngine.")))
1841 (version "6.3.2") 1833 (version "6.3.2")
1842 (source (origin 1834 (source (origin
1843 (method url-fetch) 1835 (method url-fetch)
1844 (uri (qt-urls name version)) 1836 (uri (qt-url name version))
1845 (sha256 1837 (sha256
1846 (base32 1838 (base32
1847 "0gqm09yqdq27kgb02idx5ycj14k5mjhh10ddp9jfs8lblimlgfni")))) 1839 "0gqm09yqdq27kgb02idx5ycj14k5mjhh10ddp9jfs8lblimlgfni"))))
@@ -1879,7 +1871,7 @@ application).")
1879 (version %qt-version) 1871 (version %qt-version)
1880 (source (origin 1872 (source (origin
1881 (method url-fetch) 1873 (method url-fetch)
1882 (uri (qt-urls name version)) 1874 (uri (qt-url name version))
1883 (sha256 1875 (sha256
1884 (base32 1876 (base32
1885 "1gvzhgfn55kdp5g11fg5yja5xb6wghx5sfc8vfp8zzpxnak7pbn1")))) 1877 "1gvzhgfn55kdp5g11fg5yja5xb6wghx5sfc8vfp8zzpxnak7pbn1"))))
@@ -1908,7 +1900,7 @@ OpenGL ES 2.0 and can be used in HTML5 canvas elements")))
1908 (version %qt-version) 1900 (version %qt-version)
1909 (source (origin 1901 (source (origin
1910 (method url-fetch) 1902 (method url-fetch)
1911 (uri (qt-urls name version)) 1903 (uri (qt-url name version))
1912 (sha256 1904 (sha256
1913 (base32 1905 (base32
1914 "1b03dzlff840n2i53r105c7sv91ivwzxn7ldpgnhiyrhr897i9kj")))) 1906 "1b03dzlff840n2i53r105c7sv91ivwzxn7ldpgnhiyrhr897i9kj"))))
@@ -1926,7 +1918,7 @@ native APIs where it makes sense.")))
1926 (version %qt-version) 1918 (version %qt-version)
1927 (source (origin 1919 (source (origin
1928 (method url-fetch) 1920 (method url-fetch)
1929 (uri (qt-urls name version)) 1921 (uri (qt-url name version))
1930 (sha256 1922 (sha256
1931 (base32 1923 (base32
1932 "0r16qxy0pfpwvna4gpz67jk3qv3qizfd659kc9iwdh8bhz7lpjrw")))) 1924 "0r16qxy0pfpwvna4gpz67jk3qv3qizfd659kc9iwdh8bhz7lpjrw"))))
@@ -1950,7 +1942,7 @@ positioning and geolocation plugins.")))
1950 (version "6.3.2") 1942 (version "6.3.2")
1951 (source (origin 1943 (source (origin
1952 (method url-fetch) 1944 (method url-fetch)
1953 (uri (qt-urls name version)) 1945 (uri (qt-url name version))
1954 (sha256 1946 (sha256
1955 (base32 1947 (base32
1956 "1c092hmf114r8jfdhkhxnn3vywj93mg33whzav47gr9mbza44icq")))) 1948 "1c092hmf114r8jfdhkhxnn3vywj93mg33whzav47gr9mbza44icq"))))
@@ -1983,7 +1975,7 @@ plugin for Adobe After Effects.")
1983 (version %qt-version) 1975 (version %qt-version)
1984 (source (origin 1976 (source (origin
1985 (method url-fetch) 1977 (method url-fetch)
1986 (uri (qt-urls name version)) 1978 (uri (qt-url name version))
1987 (sha256 1979 (sha256
1988 (base32 1980 (base32
1989 "1i79fwsn799x3n3jidp3f4gz9d5vi9gg6p8g8lbswb832gggigm3")))) 1981 "1i79fwsn799x3n3jidp3f4gz9d5vi9gg6p8g8lbswb832gggigm3"))))
@@ -2003,7 +1995,7 @@ that helps in Qt development.")))
2003 (version "6.3.2") 1995 (version "6.3.2")
2004 (source (origin 1996 (source (origin
2005 (method url-fetch) 1997 (method url-fetch)
2006 (uri (qt-urls name version)) 1998 (uri (qt-url name version))
2007 (sha256 1999 (sha256
2008 (base32 2000 (base32
2009 "1lmfk5bhgg4daxkqrhmx4iyln7pyiz40c9cp6plyp35nz8ppvc75")))) 2001 "1lmfk5bhgg4daxkqrhmx4iyln7pyiz40c9cp6plyp35nz8ppvc75"))))
@@ -2043,7 +2035,7 @@ that helps in Qt development.")
2043 (version "6.3.2") 2035 (version "6.3.2")
2044 (source (origin 2036 (source (origin
2045 (method url-fetch) 2037 (method url-fetch)
2046 (uri (qt-urls name version)) 2038 (uri (qt-url name version))
2047 (sha256 2039 (sha256
2048 (base32 2040 (base32
2049 "1h66n9cx4g65c9wrgp32h9gm3r47gyh1nrcn3ivbfbvngfawqxpg")))) 2041 "1h66n9cx4g65c9wrgp32h9gm3r47gyh1nrcn3ivbfbvngfawqxpg"))))
@@ -2065,7 +2057,7 @@ the Qt community.")
2065 (version %qt-version) 2057 (version %qt-version)
2066 (source (origin 2058 (source (origin
2067 (method url-fetch) 2059 (method url-fetch)
2068 (uri (qt-urls name version)) 2060 (uri (qt-url name version))
2069 (sha256 2061 (sha256
2070 (base32 2062 (base32
2071 "0rjj1pn0fwdq0qz0nzisxza671ywfrq5cv6iplywfyflh7q4dmcs")) 2063 "0rjj1pn0fwdq0qz0nzisxza671ywfrq5cv6iplywfyflh7q4dmcs"))
@@ -2084,7 +2076,7 @@ ECMAScript and Qt.")))
2084 (version %qt-version) 2076 (version %qt-version)
2085 (source (origin 2077 (source (origin
2086 (method url-fetch) 2078 (method url-fetch)
2087 (uri (qt-urls name version)) 2079 (uri (qt-url name version))
2088 (sha256 2080 (sha256
2089 (base32 2081 (base32
2090 "0yp47bpkfckms76vw0hrwnzchy8iak23ih6w9pnwrnjkmbc65drc")))) 2082 "0yp47bpkfckms76vw0hrwnzchy8iak23ih6w9pnwrnjkmbc65drc"))))
@@ -2104,7 +2096,7 @@ can be used to build complete interfaces in Qt Quick.")))
2104 (version %qt-version) 2096 (version %qt-version)
2105 (source (origin 2097 (source (origin
2106 (method url-fetch) 2098 (method url-fetch)
2107 (uri (qt-urls name version)) 2099 (uri (qt-url name version))
2108 (sha256 2100 (sha256
2109 (base32 2101 (base32
2110 "058dkj6272za47vnz3mxsmwsj85gxf6g0ski645fphk8s3jp2bk5")))) 2102 "058dkj6272za47vnz3mxsmwsj85gxf6g0ski645fphk8s3jp2bk5"))))
@@ -2131,7 +2123,7 @@ not available.")))
2131 (version %qt-version) 2123 (version %qt-version)
2132 (source (origin 2124 (source (origin
2133 (method url-fetch) 2125 (method url-fetch)
2134 (uri (qt-urls name version)) 2126 (uri (qt-url name version))
2135 (sha256 2127 (sha256
2136 (base32 2128 (base32
2137 "0wypji8i19kjq18qd92z8kkd3fj2n0d5hgh6xiza96833afvibj9")))) 2129 "0wypji8i19kjq18qd92z8kkd3fj2n0d5hgh6xiza96833afvibj9"))))
@@ -2154,7 +2146,7 @@ coloring, and many more.")))
2154 (version %qt-version) 2146 (version %qt-version)
2155 (source (origin 2147 (source (origin
2156 (method url-fetch) 2148 (method url-fetch)
2157 (uri (qt-urls name version)) 2149 (uri (qt-url name version))
2158 (sha256 2150 (sha256
2159 (base32 2151 (base32
2160 "0vgxprgk7lak209wsg2ljzfkpwgjzscpbxmj5fyvvwm2pbnpspvk")))) 2152 "0vgxprgk7lak209wsg2ljzfkpwgjzscpbxmj5fyvvwm2pbnpspvk"))))
@@ -2180,7 +2172,7 @@ and mobile applications targeting TV-like form factors.")))
2180 (version %qt-version) 2172 (version %qt-version)
2181 (source (origin 2173 (source (origin
2182 (method url-fetch) 2174 (method url-fetch)
2183 (uri (qt-urls name version)) 2175 (uri (qt-url name version))
2184 (sha256 2176 (sha256
2185 (base32 2177 (base32
2186 "17j6npvgr8q3lyrqmvfh1n47mkhfzk18r998hcjm2w75xj46km1n")) 2178 "17j6npvgr8q3lyrqmvfh1n47mkhfzk18r998hcjm2w75xj46km1n"))
@@ -2207,7 +2199,7 @@ also contains functionality to support data models and executable content.")))
2207 (version "6.3.2") 2199 (version "6.3.2")
2208 (source (origin 2200 (source (origin
2209 (method url-fetch) 2201 (method url-fetch)
2210 (uri (qt-urls name version)) 2202 (uri (qt-url name version))
2211 (sha256 2203 (sha256
2212 (base32 2204 (base32
2213 "0zh45lf164nzwl1hh96qm64nyw9wzzrnm5s7sx761glz54q6l5xz")))) 2205 "0zh45lf164nzwl1hh96qm64nyw9wzzrnm5s7sx761glz54q6l5xz"))))
@@ -2238,7 +2230,7 @@ information and perform area based monitoring.")
2238 (version %qt-version) 2230 (version %qt-version)
2239 (source (origin 2231 (source (origin
2240 (method url-fetch) 2232 (method url-fetch)
2241 (uri (qt-urls name version)) 2233 (uri (qt-url name version))
2242 (sha256 2234 (sha256
2243 (base32 2235 (base32
2244 "0bjky5ncg9yhz4a63g3jl1r5pa6i09f6g8wgzs591mhybrbmhcw8")))) 2236 "0bjky5ncg9yhz4a63g3jl1r5pa6i09f6g8wgzs591mhybrbmhcw8"))))
@@ -2254,7 +2246,7 @@ purchasing goods and services.")))
2254 (version %qt-version) 2246 (version %qt-version)
2255 (source (origin 2247 (source (origin
2256 (method url-fetch) 2248 (method url-fetch)
2257 (uri (qt-urls name version)) 2249 (uri (qt-url name version))
2258 (sha256 2250 (sha256
2259 (base32 2251 (base32
2260 "1q11ank69l9qw3iks2svr0g2g6pzng9v8p87dpsmjs988f4ysmll")))) 2252 "1q11ank69l9qw3iks2svr0g2g6pzng9v8p87dpsmjs988f4ysmll"))))
@@ -2283,7 +2275,7 @@ selecting one of the charts themes.")
2283 (version %qt-version) 2275 (version %qt-version)
2284 (source (origin 2276 (source (origin
2285 (method url-fetch) 2277 (method url-fetch)
2286 (uri (qt-urls name version)) 2278 (uri (qt-url name version))
2287 (sha256 2279 (sha256
2288 (base32 2280 (base32
2289 "1mr2kdshahxrkjs9wlgpr59jbqvyvlax16rlnca4iq00w3v5hrdh")))) 2281 "1mr2kdshahxrkjs9wlgpr59jbqvyvlax16rlnca4iq00w3v5hrdh"))))
@@ -2305,7 +2297,7 @@ customized by using themes or by adding custom items and labels to them.")
2305 (version %qt-version) 2297 (version %qt-version)
2306 (source (origin 2298 (source (origin
2307 (method url-fetch) 2299 (method url-fetch)
2308 (uri (qt-urls name version)) 2300 (uri (qt-url name version))
2309 (sha256 2301 (sha256
2310 (base32 2302 (base32
2311 "0fsmpjwkzzy3281shld7gs1gj217smb1f8ai63gdvnkp0jb2fhc5")))) 2303 "0fsmpjwkzzy3281shld7gs1gj217smb1f8ai63gdvnkp0jb2fhc5"))))
@@ -2320,7 +2312,7 @@ implementation of OAuth and OAuth2 authenticathon methods for Qt.")))
2320 (version "6.3.2") 2312 (version "6.3.2")
2321 (source (origin 2313 (source (origin
2322 (method url-fetch) 2314 (method url-fetch)
2323 (uri (qt-urls name version)) 2315 (uri (qt-url name version))
2324 (sha256 2316 (sha256
2325 (base32 2317 (base32
2326 "0mjnz87splyxq7jwydi5ws2aqb6j7czscrkns193w425x0dgy94l")))) 2318 "0mjnz87splyxq7jwydi5ws2aqb6j7czscrkns193w425x0dgy94l"))))
@@ -2340,7 +2332,7 @@ implementation of OAuth and OAuth2 authenticathon methods for Qt.")
2340 (version "6.3.2") 2332 (version "6.3.2")
2341 (source (origin 2333 (source (origin
2342 (method url-fetch) 2334 (method url-fetch)
2343 (uri (qt-urls name version)) 2335 (uri (qt-url name version))
2344 (sha256 2336 (sha256
2345 (base32 2337 (base32
2346 "099b3vchi458i4fci9kfwan871jplqlk5l8q78mfnh33g80qnasi")))) 2338 "099b3vchi458i4fci9kfwan871jplqlk5l8q78mfnh33g80qnasi"))))
@@ -2378,7 +2370,7 @@ processes or computers.")
2378 (version %qt-version) 2370 (version %qt-version)
2379 (source (origin 2371 (source (origin
2380 (method url-fetch) 2372 (method url-fetch)
2381 (uri (qt-urls name version)) 2373 (uri (qt-url name version))
2382 (sha256 2374 (sha256
2383 (base32 2375 (base32
2384 "1q56lyj7s05sx52j5z6gcs000mni4c7mb7qyq4lfval7c06hw5p6")))) 2376 "1q56lyj7s05sx52j5z6gcs000mni4c7mb7qyq4lfval7c06hw5p6"))))
@@ -2531,7 +2523,7 @@ using the Enchant spell-checking library.")
2531 (source 2523 (source
2532 (origin 2524 (origin
2533 (method url-fetch) 2525 (method url-fetch)
2534 (uri (qt-urls name version)) 2526 (uri (qt-url name version))
2535 (sha256 2527 (sha256
2536 (base32 2528 (base32
2537 "1qv15g5anhlfsdwnjxy21vc3zxxm8149vysi774l93iab6mxqmjg")) 2529 "1qv15g5anhlfsdwnjxy21vc3zxxm8149vysi774l93iab6mxqmjg"))
@@ -2859,7 +2851,7 @@ and binaries removed, and adds modular support for using system libraries.")
2859 (source 2851 (source
2860 (origin 2852 (origin
2861 (method url-fetch) 2853 (method url-fetch)
2862 (uri (qt-urls name version)) 2854 (uri (qt-url name version))
2863 (sha256 2855 (sha256
2864 (base32 2856 (base32
2865 "09j4w9ax8242d1yx3hmic7jcwidwdrn8sp7k89hj4l0n8mzkkd35")) 2857 "09j4w9ax8242d1yx3hmic7jcwidwdrn8sp7k89hj4l0n8mzkkd35"))