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