summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/benchmark.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/benchmark.scm b/gnu/packages/benchmark.scm
index 735ba60b242..5e55f0a59ba 100644
--- a/gnu/packages/benchmark.scm
+++ b/gnu/packages/benchmark.scm
@@ -13,6 +13,7 @@
13;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net> 13;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
14;;; Copyright © 2022 Tomasz Jeneralczyk <tj@schwi.pl> 14;;; Copyright © 2022 Tomasz Jeneralczyk <tj@schwi.pl>
15;;; Copyright © 2024 Nicolas Graves <ngraves@ngraves.fr> 15;;; Copyright © 2024 Nicolas Graves <ngraves@ngraves.fr>
16;;; Copyright © 2025 Artyom V. Poptsov <poptsov.artyom@gmail.com>
16;;; 17;;;
17;;; This file is part of GNU Guix. 18;;; This file is part of GNU Guix.
18;;; 19;;;
@@ -47,6 +48,7 @@
47 #:use-module (gnu packages base) 48 #:use-module (gnu packages base)
48 #:use-module (gnu packages bash) 49 #:use-module (gnu packages bash)
49 #:use-module (gnu packages c) 50 #:use-module (gnu packages c)
51 #:use-module (gnu packages gcc)
50 #:use-module (gnu packages nss) 52 #:use-module (gnu packages nss)
51 #:use-module (gnu packages check) 53 #:use-module (gnu packages check)
52 #:use-module (gnu packages compression) 54 #:use-module (gnu packages compression)
@@ -274,7 +276,7 @@ tests.")
274 "010bmlmi0nrlp3aq7p624sfaj5a65lswnyyxk3cnz1bqig0cn2vf")))) 276 "010bmlmi0nrlp3aq7p624sfaj5a65lswnyyxk3cnz1bqig0cn2vf"))))
275 (build-system gnu-build-system) 277 (build-system gnu-build-system)
276 (native-inputs 278 (native-inputs
277 (list perl)) 279 (list gcc-10 perl))
278 (arguments '(#:tests? #f)) ; there are no tests 280 (arguments '(#:tests? #f)) ; there are no tests
279 (home-page "https://doc.coker.com.au/projects/bonnie/") 281 (home-page "https://doc.coker.com.au/projects/bonnie/")
280 (synopsis "Hard drive and file system benchmark suite") 282 (synopsis "Hard drive and file system benchmark suite")