From 414b02ad523b45e76773a210ea2ee41236328bea Mon Sep 17 00:00:00 2001
Date: Fri, 12 Feb 2021 17:28:14 +0000
Subject: [PATCH 2/3] gnu: apache-arrow: Sort inputs alphabetically.
* gnu/packages/databases.scm (apache-arrow): Sort inputs.
---
gnu/packages/databases.scm | 21 +++++++++++----------
1 file 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 @@
;;;
;;; 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"))
--
2.30.0