summaryrefslogtreecommitdiff
path: root/gnu/packages/file-systems.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/file-systems.scm')
-rw-r--r--gnu/packages/file-systems.scm10
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index 1713c4a03ac..5814bc6583f 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -481,7 +481,6 @@ is corrupted you'll lose the affected file(s) but not the whole back-up.")
481 (build-system go-build-system) 481 (build-system go-build-system)
482 (arguments 482 (arguments
483 (list 483 (list
484 #:go go-1.23
485 #:import-path "github.com/google/fscrypt" 484 #:import-path "github.com/google/fscrypt"
486 #:install-source? #f 485 #:install-source? #f
487 #:test-flags 486 #:test-flags
@@ -492,7 +491,9 @@ is corrupted you'll lose the affected file(s) but not the whole back-up.")
492 "TestLoadReadOnlyMount" 491 "TestLoadReadOnlyMount"
493 "TestReadWriteMountIsPreferredOverReadOnlyMount" 492 "TestReadWriteMountIsPreferredOverReadOnlyMount"
494 "TestLoadAmbiguousMounts" 493 "TestLoadAmbiguousMounts"
495 "TestRootSubtreeIsPreferred") "|")) 494 "TestRootSubtreeIsPreferred") "|")
495 ;; Disable go vet in go 1.24+
496 "-vet=off")
496 #:phases 497 #:phases
497 #~(modify-phases %standard-phases 498 #~(modify-phases %standard-phases
498 (add-before 'build 'fix-version-detection 499 (add-before 'build 'fix-version-detection
@@ -625,7 +626,6 @@ significantly increases the risk of irreversible data loss!")
625 (build-system go-build-system) 626 (build-system go-build-system)
626 (arguments 627 (arguments
627 (list 628 (list
628 #:go go-1.23
629 #:install-source? #f 629 #:install-source? #f
630 #:import-path "github.com/rfjakob/gocryptfs" 630 #:import-path "github.com/rfjakob/gocryptfs"
631 #:build-flags 631 #:build-flags
@@ -640,7 +640,9 @@ significantly increases the risk of irreversible data loss!")
640 (list "TestPrepareAtSyscall" 640 (list "TestPrepareAtSyscall"
641 "TestPrepareAtSyscallPlaintextnames" 641 "TestPrepareAtSyscallPlaintextnames"
642 "TestGetdents") 642 "TestGetdents")
643 "|")) 643 "|")
644 ;; disable go vet for go 1.24+
645 "-vet=off")
644 ;; XXX: Test suit requires a root access to mount, limit to some unit 646 ;; XXX: Test suit requires a root access to mount, limit to some unit
645 ;; tests, figure out how to enable most of the them. 647 ;; tests, figure out how to enable most of the them.
646 #:test-subdirs #~(list "internal/...") 648 #:test-subdirs #~(list "internal/...")