diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-12-20 00:50:43 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-12-20 02:04:50 +0100 |
commit | a86a6fb6fcae3fc0e530149a0106ff7a7c4b3679 (patch) | |
tree | 8948c0e4a37d460478c32149199cf89810f50577 /gnu/packages/file-systems.scm | |
parent | 83197fdf0554deae2110e10263a25366e33113cd (diff) | |
download | guix-a86a6fb6fcae3fc0e530149a0106ff7a7c4b3679.tar guix-a86a6fb6fcae3fc0e530149a0106ff7a7c4b3679.tar.gz |
gnu: bcachefs-tools-static: Fix build.
* gnu/packages/crypto.scm (keyutils)[arguments]: Do build the static
library, but move it to the :static output in a new 'install:static
phase.
* gnu/packages/file-systems.scm (bcachefs-tools/static)[inputs]:
Add this keyutils:static.
Diffstat (limited to 'gnu/packages/file-systems.scm')
-rw-r--r-- | gnu/packages/file-systems.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index 20599d37fe..8c0fff00b7 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm @@ -507,6 +507,7 @@ performance and other characteristics.") ((".*\\$\\(INSTALL\\).* lib.*") "")))))))) (inputs `(("eudev:static" ,eudev "static") + ("keyutils:static" ,keyutils "static") ("libscrypt:static" ,libscrypt "static") ("lz4:static" ,lz4 "static") ("util-linux:static" ,util-linux "static") ; lib{blkid,uuid} |