From a21ddf8192beb4ceb05af69c28980fd5f346e1a3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 18 Aug 2024 02:00:00 +0200 Subject: gnu: bcachefs-tools-static: Rename. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/file-systems.scm (bcachefs-tools-static): Rename this… (bcachefs-tools-minimal-static): …to this. Adjust all users. Change-Id: I26f28668d3c0297c09f18cbb5f73a876152612e7 --- gnu/packages/file-systems.scm | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index 8a069208f0..0499c9f755 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -765,10 +765,14 @@ performance and other characteristics.") (list bcachefs-tools-minimal) (list)))))) -(define-public bcachefs-tools/static +(define-public bcachefs-tools-minimal/static + ;; The static variant is public for consistency with the other file system + ;; tools packages, but ours is based on the private minimal package. We + ;; don't need/want a bcachefs with FUSE support in the initrd, and nobody + ;; is likely to complain about the lack of a non-minimal bcachefs-static… (package (inherit bcachefs-tools-minimal) - (name "bcachefs-tools-static") + (name "bcachefs-tools-minimal-static") (arguments (substitute-keyword-arguments (package-arguments bcachefs-tools-minimal) ((#:phases phases #~%standard-phases) @@ -811,7 +815,7 @@ performance and other characteristics.") (define-public bcachefs/static (package (name "bcachefs-static") - (version (package-version bcachefs-tools/static)) + (version (package-version bcachefs-tools-minimal/static)) (source #f) (build-system trivial-build-system) (arguments @@ -824,13 +828,13 @@ performance and other characteristics.") (dirname target)) (remove-store-references target))))) (inputs - (list bcachefs-tools/static)) - (home-page (package-home-page bcachefs-tools/static)) + (list bcachefs-tools-minimal/static)) + (home-page (package-home-page bcachefs-tools-minimal/static)) (synopsis "Statically-linked bcachefs command from bcachefs-tools") (description "This package provides the statically-linked @command{bcachefs} from a minimal bcachefs-tools package. It is meant to be used in initrds.") - (license (package-license bcachefs-tools/static)))) + (license (package-license bcachefs-tools-minimal/static)))) (define-public exfatprogs (package -- cgit v1.2.3