-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e2fsprogs: allow static build #74485
Conversation
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec { | |||
|
|||
configureFlags = | |||
if stdenv.isLinux then [ | |||
"--enable-elf-shlibs" | |||
(if shared then "--enable-elf-shlibs" else "--disable-elf-shlibs") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you indicate with a comment whether e2fsprogs
is one of the (few) problems where one can only build static XOR dynamic?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added a comment.
2140473
to
f6ea330
Compare
|
Backport of NixOS#74485. Fixes NixOS#71813. (cherry picked from commit f6ea330)
If we want a backport to 19.09, I've resolved the merge-conflicts here: |
|
||
# Don’t use new stdenv zlib because | ||
# it doesn’t like the --disable-shared flag | ||
stdenv = super.stdenv; | ||
}).static; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just learned that this change accidentally also fixed more severe issues (nh2/static-haskell-nix#73):
nix-shell -p 'pkgsStatic.zlib.override {}'
did not work until this commit, it errored:
error: attribute 'override' missing, at (string):1:94
FYI @malbarbo @dtzWill @matthewbauer
It appears that we must never use .static
or other split outputs in things like static.nix
because they are not overridable. (copied from nh2/static-haskell-nix#73 (comment))
Also interesting is that pkgsStatic.zlib
has nonsensical attributes like cmakeFlags
(even though it does not use cmake) from here in the make-derivation.nix
case of lib.optionalAttrs (stdenv.hostPlatform != stdenv.buildPlatform)
: https://github.com/nh2/nixpkgs/blob/11aa987ea5b5a593c9ca7a38b391804959f905e5/pkgs/stdenv/generic/make-derivation.nix#L245-L254
Motivation for this change
This enable building
pkgsStatic.e2fsprogs
.The zlib changes is to avoid the error
which makes sense because
zlib.static
does not include headers.Things done
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)Notify maintainers
cc @edolstra (listed as e2fsprogs mantainer)
cc @nh2 @matthewbauer (involved in static build of zlib)