gnu: bcachefs-tools-static: Fix build.

This follows up on commit 196e3f5235:
bcachefs-tools now unconditionally builds and installs libbcachefs.so.

* gnu/packages/file-systems.scm (bcachefs-tools-static)[arguments]:
Add a new 'skip-shared-library phase.
This commit is contained in:
Tobias Geerinckx-Rice 2021-10-23 16:48:39 +02:00
parent 1f5e6ff648
commit 5df03003e6
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79

View File

@ -507,7 +507,17 @@ performance and other characteristics.")
(substitute-keyword-arguments (package-arguments bcachefs-tools)
((#:make-flags make-flags)
`(append ,make-flags
(list "LDFLAGS=-static")))))
(list "LDFLAGS=-static")))
((#:phases phases)
`(modify-phases ,phases
(add-after 'unpack 'skip-shared-library
(lambda _
(substitute* "Makefile"
;; Building the shared library with -static obviously fails…
(("^((all|install):.*)\\blib\\b(.*)" _ prefix suffix)
(string-append prefix suffix "\n"))
;; …as does installing a now non-existent file.
((".*\\$\\(INSTALL\\).* lib.*") ""))))))))
(inputs
`(("eudev:static" ,eudev "static")
("libscrypt:static" ,libscrypt "static")