diff options
author | Greg Hogan <code@greghogan.com> | 2021-02-12 17:28:14 +0000 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-02-16 13:38:37 -0500 |
commit | 23af76f136591122b7fdd25a984319795419e081 (patch) | |
tree | fc8c9c0b7126c7ea9b9efbc60eddbde68adab149 | |
parent | bd32f85bfa502d92bf9370986b2ebfa8d75d74ed (diff) | |
download | guix-23af76f136591122b7fdd25a984319795419e081.tar.gz |
gnu: apache-arrow: Sort inputs alphabetically.
* gnu/packages/databases.scm (apache-arrow)[inputs]: Sort inputs. Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r-- | gnu/packages/databases.scm | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 3694a93df2..3be3a14ded 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -47,6 +47,7 @@ ;;; Copyright © 2020 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> ;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com> +;;; Copyright © 2021 Greg Hogan <code@greghogan.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -3874,23 +3875,23 @@ Monitor read/write activity on a mongo server ;;"-DBENCHMARK_ENABLE_TESTING=OFF" "-DARROW_BUILD_STATIC=OFF"))) (inputs - `(("boost" ,boost) + `(("apache-thrift" ,apache-thrift "lib") + ("boost" ,boost) ("brotli" ,google-brotli) + ("bzip2" ,bzip2) ("double-conversion" ,double-conversion) - ("snappy" ,snappy) ("gflags" ,gflags) ("glog" ,glog) - ("apache-thrift" ,apache-thrift "lib") + ("grpc" ,grpc) + ("lz4" ,lz4) ("protobuf" ,protobuf) + ("python-3" ,python) + ("python-numpy" ,python-numpy) ("rapidjson" ,rapidjson) - ("zlib" ,zlib) - ("bzip2" ,bzip2) - ("lz4" ,lz4) - ("zstd" ,zstd "lib") ("re2" ,re2) - ("grpc" ,grpc) - ("python-3" ,python) - ("python-numpy" ,python-numpy))) + ("snappy" ,snappy) + ("zlib" ,zlib) + ("zstd" ,zstd "lib"))) (native-inputs `(("pkg-config" ,pkg-config))) (outputs '("out" "lib" "include")) |