diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:18:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:48:25 +0100 |
commit | 8394619baceb118df92e355377fd543bb1aa501a (patch) | |
tree | 504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/apr.scm | |
parent | aca2defe0172868295941fd9f0e97886f6e9b2d4 (diff) | |
download | guix-8394619baceb118df92e355377fd543bb1aa501a.tar.gz |
gnu: Simplify package inputs.
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
Diffstat (limited to 'gnu/packages/apr.scm')
-rw-r--r-- | gnu/packages/apr.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/apr.scm b/gnu/packages/apr.scm index 5ef1488218..3b4968089b 100644 --- a/gnu/packages/apr.scm +++ b/gnu/packages/apr.scm @@ -48,8 +48,7 @@ ;; Thus, build sequentially. '(#:parallel-build? #f #:parallel-tests? #f)) - (inputs `(("perl" ,perl) - ("libltdl" ,libltdl))) + (inputs (list perl libltdl)) (home-page "http://apr.apache.org/") (synopsis "The Apache Portable Runtime Library") (description @@ -75,9 +74,9 @@ around or take advantage of platform-specific deficiencies or features.") "0nq3s1yn13vplgl6qfm09f7n0wm08malff9s59bqf9nid9xjzqfk")))) (build-system gnu-build-system) (inputs - `(("apr" ,apr))) + (list apr)) (propagated-inputs - `(("expat" ,expat))) + (list expat)) (arguments '(#:phases (modify-phases %standard-phases |