diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-18 16:53:50 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-18 16:58:13 +0000 |
commit | 715a2558434a70fa16b936f68053552fee7570a4 (patch) | |
tree | dd8e820821fed37f3a7bfef9c2da1d5fca644ad6 /gnu/packages/golang-xyz.scm | |
parent | eb0898c16559f053adff99732bcd1bbb64b51494 (diff) |
gnu: go-github-com-hanwen-go-fuse-v2: Fix indentation.
* gnu/packages/golang-xyz.scm (go-github-com-hanwen-go-fuse-v2): Fix
indentation.
[phases] {remove-benchmark}: Remove unused "tests?" argument from
lambda.
Change-Id: Iff9528ec13a2e90a415a3ee80006c63dc9ffbd0c
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 31f5bacad8..a66144a9f4 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -6902,11 +6902,11 @@ provides a buffered io.Writer that is flushed at a timed interval.") (package-arguments go-github-com-hanwen-go-fuse) ((#:import-path _) "github.com/hanwen/go-fuse/v2") ((#:phases phases #~%standard-phases) - #~(modify-phases #$phases - (add-after 'unpack 'remove-benchmark - (lambda* (#:key tests? import-path #:allow-other-keys) - (with-directory-excursion (string-append "src/" import-path) - (delete-file-recursively "benchmark")))) + #~(modify-phases #$phases + (add-after 'unpack 'remove-benchmark + (lambda* (#:key import-path #:allow-other-keys) + (with-directory-excursion (string-append "src/" import-path) + (delete-file-recursively "benchmark")))) (add-after 'unpack 'fix-paths (lambda* (#:key import-path #:allow-other-keys) (with-directory-excursion (string-append "src/" import-path) |