me
/
guix
Archived
1
0
Fork 0

gnu: Add bcachefs-tools-static.

* gnu/packages/file-systems.scm (bcachefs-tools/static): New public
variable.
master
Tobias Geerinckx-Rice 2020-11-05 21:45:09 +01:00
parent 8ce52a25bc
commit 7c5f064277
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 18 additions and 0 deletions

View File

@ -386,6 +386,24 @@ caching system, and lets you assign different roles to each device based on its
performance and other characteristics.")
(license license:gpl2+))))
(define-public bcachefs-tools/static
(package
(inherit bcachefs-tools)
(name "bcachefs-tools-static")
(arguments
(substitute-keyword-arguments (package-arguments bcachefs-tools)
((#:make-flags make-flags)
`(append ,make-flags
(list "LDFLAGS=-static")))))
(inputs
`(("eudev:static" ,eudev "static")
("libscrypt:static" ,libscrypt "static")
("lz4:static" ,lz4 "static")
("util-linux:static" ,util-linux "static") ; lib{blkid,uuid}
("zlib" ,zlib "static")
("zstd:static" ,zstd "static")
,@(package-inputs bcachefs-tools)))))
(define-public exfatprogs
(package
(name "exfatprogs")