diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-12-31 01:18:22 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-01-03 13:54:13 +0100 |
commit | 56dad973bce2ecb7c7093316f06efa07a4a26070 (patch) | |
tree | eb9b92a8318fc81be3bc9dcef65de143a1d9faad /gnu/packages/file-systems.scm | |
parent | 43c4d27cdfed5ce98ecd4ce48fcd43e188e5a3aa (diff) |
gnu: Add jfsutils-static.
gnu/packages/file-systems.scm (jfsutils/static): New public variable.
Diffstat (limited to 'gnu/packages/file-systems.scm')
-rw-r--r-- | gnu/packages/file-systems.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index fbf0e2641f..3a8848b3ad 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -145,6 +145,15 @@ transaction log. @end enumerate\n") (license license:gpl3+))) ; no explicit version given +(define-public jfsutils/static + (static-package + (package + (inherit jfsutils) + (name "jfsutils-static") + (inputs + `(("util-linux:static" ,util-linux "static") + ,@(package-inputs jfsutils)))))) + (define-public disorderfs (package (name "disorderfs") |