diff options
author | Marius Bakke <marius@gnu.org> | 2021-11-06 00:03:39 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-11-06 17:46:37 +0100 |
commit | 75f2eb41ccd21fd38dc371830d93fc63083a83b4 (patch) | |
tree | a7c58f39816c3c3af343e5ad5c1a5b05c999b60d /gnu/packages | |
parent | 5e7c2eb7ae95064cb0c68e2ca6a9256a3b9f0b0d (diff) | |
download | guix-75f2eb41ccd21fd38dc371830d93fc63083a83b4.tar.gz guix-75f2eb41ccd21fd38dc371830d93fc63083a83b4.zip |
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.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/benchmark.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/benchmark.scm b/gnu/packages/benchmark.scm index 3cee5dae17..e355a47d4e 100644 --- a/gnu/packages/benchmark.scm +++ b/gnu/packages/benchmark.scm @@ -47,7 +47,6 @@ #: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 @@ (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") |