diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-09-18 09:04:46 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-09-19 23:22:45 -0400 |
commit | 229091385aa146aec36e48fccc341c69cd316014 (patch) | |
tree | 1cd7a818d1c046420f005c02337d2870151172f1 | |
parent | afeed71ae447ea18f7bc1b0b331e73e995308251 (diff) | |
download | guix-229091385aa146aec36e48fccc341c69cd316014.tar.gz guix-229091385aa146aec36e48fccc341c69cd316014.zip |
gnu: qemu: Fix indentation.
* gnu/packages/virtualization.scm (qemu): Fix indentation.
-rw-r--r-- | gnu/packages/virtualization.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index 9955045efb..c77bc39da9 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -132,12 +132,12 @@ (name "qemu") (version "5.1.0") (source (origin - (method url-fetch) - (uri (string-append "https://download.qemu.org/qemu-" - version ".tar.xz")) - (sha256 - (base32 - "1rd41wwlvp0vpialjp2czs6i3lsc338xc72l3zkbb7ixjfslw5y9")))) + (method url-fetch) + (uri (string-append "https://download.qemu.org/qemu-" + version ".tar.xz")) + (sha256 + (base32 + "1rd41wwlvp0vpialjp2czs6i3lsc338xc72l3zkbb7ixjfslw5y9")))) (build-system gnu-build-system) (arguments `(;; Running tests in parallel can occasionally lead to failures, like: @@ -207,7 +207,7 @@ #t)) (replace 'configure (lambda* (#:key inputs outputs (configure-flags '()) - #:allow-other-keys) + #:allow-other-keys) ;; The `configure' script doesn't understand some of the ;; GNU options. Thus, add a new phase that's compatible. (let ((out (assoc-ref outputs "out"))) |