mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: bcachefs-tools-static: Rename.
* gnu/packages/file-systems.scm (bcachefs-tools-static): Rename this… (bcachefs-tools-minimal-static): …to this. Adjust all users. Change-Id: I26f28668d3c0297c09f18cbb5f73a876152612e7
This commit is contained in:
parent
09245f698f
commit
a21ddf8192
1 changed files with 10 additions and 6 deletions
|
@ -765,10 +765,14 @@ (define (output-completions shell file)
|
||||||
(list bcachefs-tools-minimal)
|
(list bcachefs-tools-minimal)
|
||||||
(list))))))
|
(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
|
(package
|
||||||
(inherit bcachefs-tools-minimal)
|
(inherit bcachefs-tools-minimal)
|
||||||
(name "bcachefs-tools-static")
|
(name "bcachefs-tools-minimal-static")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments bcachefs-tools-minimal)
|
(substitute-keyword-arguments (package-arguments bcachefs-tools-minimal)
|
||||||
((#:phases phases #~%standard-phases)
|
((#:phases phases #~%standard-phases)
|
||||||
|
@ -811,7 +815,7 @@ (define-public bcachefs-tools/static
|
||||||
(define-public bcachefs/static
|
(define-public bcachefs/static
|
||||||
(package
|
(package
|
||||||
(name "bcachefs-static")
|
(name "bcachefs-static")
|
||||||
(version (package-version bcachefs-tools/static))
|
(version (package-version bcachefs-tools-minimal/static))
|
||||||
(source #f)
|
(source #f)
|
||||||
(build-system trivial-build-system)
|
(build-system trivial-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -824,13 +828,13 @@ (define-public bcachefs/static
|
||||||
(dirname target))
|
(dirname target))
|
||||||
(remove-store-references target)))))
|
(remove-store-references target)))))
|
||||||
(inputs
|
(inputs
|
||||||
(list bcachefs-tools/static))
|
(list bcachefs-tools-minimal/static))
|
||||||
(home-page (package-home-page bcachefs-tools/static))
|
(home-page (package-home-page bcachefs-tools-minimal/static))
|
||||||
(synopsis "Statically-linked bcachefs command from bcachefs-tools")
|
(synopsis "Statically-linked bcachefs command from bcachefs-tools")
|
||||||
(description
|
(description
|
||||||
"This package provides the statically-linked @command{bcachefs} from a
|
"This package provides the statically-linked @command{bcachefs} from a
|
||||||
minimal bcachefs-tools package. It is meant to be used in initrds.")
|
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
|
(define-public exfatprogs
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue