summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-05-14 17:22:54 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2026-05-15 22:06:22 +0900
commitb04aaef06688c7fc6f393de6f136f1f79b996294 (patch)
tree85958803844137da1d1a34cf7cac4cd9acc837dd /gnu/packages
parent5c5af663a3f830359ca26a07a49128783689d9c7 (diff)
gnu: mysql: Fix indentation.
* gnu/packages/databases.scm (mysql): Fix indentation. Change-Id: I25714647b34fe3812002b2940b29d6d2254199f9
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/databases.scm74
1 files changed, 37 insertions, 37 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 9ffa93e44fe..fdd4e55c1a1 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -1166,17 +1166,17 @@ auto-completion and syntax highlighting.")
1166 (name "mysql") 1166 (name "mysql")
1167 (version "5.7.33") 1167 (version "5.7.33")
1168 (source (origin 1168 (source (origin
1169 (method url-fetch) 1169 (method url-fetch)
1170 (uri (list (string-append 1170 (uri (list (string-append
1171 "https://dev.mysql.com/get/Downloads/MySQL-" 1171 "https://dev.mysql.com/get/Downloads/MySQL-"
1172 (version-major+minor version) "/" 1172 (version-major+minor version) "/"
1173 name "-" version ".tar.gz") 1173 name "-" version ".tar.gz")
1174 (string-append 1174 (string-append
1175 "https://downloads.mysql.com/archives/get/file/" 1175 "https://downloads.mysql.com/archives/get/file/"
1176 name "-" version ".tar.gz"))) 1176 name "-" version ".tar.gz")))
1177 (sha256 1177 (sha256
1178 (base32 1178 (base32
1179 "1bb343mf7n0qg2qz497gxjsqprygrjz1q1pbz76hgqxnsy08sfxd")))) 1179 "1bb343mf7n0qg2qz497gxjsqprygrjz1q1pbz76hgqxnsy08sfxd"))))
1180 (build-system cmake-build-system) 1180 (build-system cmake-build-system)
1181 (arguments 1181 (arguments
1182 `(#:configure-flags 1182 `(#:configure-flags
@@ -1202,37 +1202,37 @@ auto-completion and syntax highlighting.")
1202 "-DINSTALL_SQLBENCHDIR=") 1202 "-DINSTALL_SQLBENCHDIR=")
1203 #:phases (modify-phases %standard-phases 1203 #:phases (modify-phases %standard-phases
1204 (add-after 1204 (add-after
1205 'install 'remove-extra-binaries 1205 'install 'remove-extra-binaries
1206 (lambda* (#:key outputs #:allow-other-keys) 1206 (lambda* (#:key outputs #:allow-other-keys)
1207 (let ((out (assoc-ref outputs "out"))) 1207 (let ((out (assoc-ref outputs "out")))
1208 ;; Remove the 3 *_embedded files, which weigh in at 1208 ;; Remove the 3 *_embedded files, which weigh in at
1209 ;; 14 MiB each. 1209 ;; 14 MiB each.
1210 (for-each delete-file 1210 (for-each delete-file
1211 (find-files (string-append out "/bin") 1211 (find-files (string-append out "/bin")
1212 "_embedded$")) 1212 "_embedded$"))
1213 #t))) 1213 #t)))
1214 (add-after 1214 (add-after
1215 'install 'wrap-mysql_helpers 1215 'install 'wrap-mysql_helpers
1216 (lambda* (#:key inputs outputs #:allow-other-keys) 1216 (lambda* (#:key inputs outputs #:allow-other-keys)
1217 (let* ((out (assoc-ref outputs "out")) 1217 (let* ((out (assoc-ref outputs "out"))
1218 (bin (string-append out "/bin")) 1218 (bin (string-append out "/bin"))
1219 (awk (assoc-ref inputs "gawk")) 1219 (awk (assoc-ref inputs "gawk"))
1220 (coreutils (assoc-ref inputs "coreutils")) 1220 (coreutils (assoc-ref inputs "coreutils"))
1221 (grep (assoc-ref inputs "grep")) 1221 (grep (assoc-ref inputs "grep"))
1222 (ps (assoc-ref inputs "procps")) 1222 (ps (assoc-ref inputs "procps"))
1223 (sed (assoc-ref inputs "sed"))) 1223 (sed (assoc-ref inputs "sed")))
1224 (wrap-program (string-append bin "/mysql_config") 1224 (wrap-program (string-append bin "/mysql_config")
1225 `("PATH" ":" suffix 1225 `("PATH" ":" suffix
1226 (,(string-append awk "/bin") 1226 (,(string-append awk "/bin")
1227 ,(string-append coreutils "/bin") 1227 ,(string-append coreutils "/bin")
1228 ,(string-append sed "/bin")))) 1228 ,(string-append sed "/bin"))))
1229 (wrap-program (string-append bin "/mysqld_safe") 1229 (wrap-program (string-append bin "/mysqld_safe")
1230 `("PATH" ":" suffix 1230 `("PATH" ":" suffix
1231 (,(string-append awk "/bin") 1231 (,(string-append awk "/bin")
1232 ,(string-append coreutils "/bin") 1232 ,(string-append coreutils "/bin")
1233 ,(string-append grep "/bin") 1233 ,(string-append grep "/bin")
1234 ,(string-append ps "/bin") 1234 ,(string-append ps "/bin")
1235 ,(string-append sed "/bin")))))))))) 1235 ,(string-append sed "/bin"))))))))))
1236 (native-inputs 1236 (native-inputs
1237 (list bison perl pkg-config)) 1237 (list bison perl pkg-config))
1238 (inputs 1238 (inputs
@@ -1246,7 +1246,7 @@ auto-completion and syntax highlighting.")
1246 ncurses 1246 ncurses
1247 openssl-1.1 1247 openssl-1.1
1248 procps 1248 procps
1249 rpcsvc-proto ; rpcgen 1249 rpcsvc-proto ; rpcgen
1250 sed 1250 sed
1251 zlib)) 1251 zlib))
1252 (home-page "https://www.mysql.com/") 1252 (home-page "https://www.mysql.com/")