gnu: fio: Disable Ceph/RADOS support.

This little-used feature is easy to add on demand and blows up the closure.

* gnu/packages/benchmark.scm (fio)[inputs]: Remove CEPH.
This commit is contained in:
Marius Bakke 2021-11-06 00:03:39 +01:00
parent 5e7c2eb7ae
commit 75f2eb41cc
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -47,7 +47,6 @@ (define-module (gnu packages benchmark)
#:use-module (gnu packages python-science)
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages storage)
#:use-module (ice-9 match))
(define-public fio
@ -93,8 +92,7 @@ (define-public fio
(find-files oldbin script?))))))))
(outputs '("out" "utils"))
(inputs
`(("ceph" ,ceph "lib")
("libaio" ,libaio)
`(("libaio" ,libaio)
("python" ,python)
("zlib" ,zlib)))
(home-page "https://github.com/axboe/fio")