summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-11-05 21:45:09 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2020-11-29 17:28:39 +0100
commit7c5f064277f5841a3c8d50e621a243d000055d20 (patch)
tree8f7675a5eaf4c21b79f16d3842efb74d04520a80 /gnu
parent8ce52a25bcdf4d547c589e95371697c6f440888f (diff)
gnu: Add bcachefs-tools-static.
* gnu/packages/file-systems.scm (bcachefs-tools/static): New public variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/file-systems.scm18
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index bc147bf3c6c..8c382a0aec7 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -386,6 +386,24 @@ caching system, and lets you assign different roles to each device based on its
386performance and other characteristics.") 386performance and other characteristics.")
387 (license license:gpl2+)))) 387 (license license:gpl2+))))
388 388
389(define-public bcachefs-tools/static
390 (package
391 (inherit bcachefs-tools)
392 (name "bcachefs-tools-static")
393 (arguments
394 (substitute-keyword-arguments (package-arguments bcachefs-tools)
395 ((#:make-flags make-flags)
396 `(append ,make-flags
397 (list "LDFLAGS=-static")))))
398 (inputs
399 `(("eudev:static" ,eudev "static")
400 ("libscrypt:static" ,libscrypt "static")
401 ("lz4:static" ,lz4 "static")
402 ("util-linux:static" ,util-linux "static") ; lib{blkid,uuid}
403 ("zlib" ,zlib "static")
404 ("zstd:static" ,zstd "static")
405 ,@(package-inputs bcachefs-tools)))))
406
389(define-public exfatprogs 407(define-public exfatprogs
390 (package 408 (package
391 (name "exfatprogs") 409 (name "exfatprogs")