diff options
author | Tobias Geerinckx-Rice <[email protected]> | 2024-08-18 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <[email protected]> | 2024-09-01 02:00:00 +0200 |
commit | 333885f613f5f2a0a991b8865c98122e4970b67d (patch) | |
tree | b882dd086fb95cbc49c20cb9aae192bf5c17ed7e | |
parent | 17bf4b1e80293864be329f553fb672c72a53e7fc (diff) |
gnu: bcachefs-static: Remove vestigial module imports.
* gnu/packages/file-systems.scm (bcachefs/static)[arguments]:
Don't USE-MODULES we don't use.
Change-Id: I93d763d39d752c974e5b1aa4295f243d70c0e6e9
-rw-r--r-- | gnu/packages/file-systems.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index 7863b13447..c57b72a27f 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -722,9 +722,7 @@ performance and other characteristics.") (list #:modules '((guix build utils)) #:builder #~(begin - (use-modules (guix build utils) - (ice-9 ftw) - (srfi srfi-26)) + (use-modules (guix build utils)) (mkdir-p #$output) (with-directory-excursion #$output (install-file (string-append #$(this-package-input |