Merge "fix: make static build work again" into main

This commit is contained in:
V. 2024-11-06 22:49:56 +00:00 committed by Gerrit Code Review
commit 1ecfff9c37
4 changed files with 24 additions and 6 deletions

View file

@ -265,6 +265,7 @@ brotli = [
]
openssl = dependency('libcrypto', 'openssl', required : true, include_type : 'system')
ncurses = dependency('ncurses', required : true, include_type : 'system')
# FIXME: confirm we actually support such old versions of aws-sdk-cpp
aws_sdk = dependency('aws-cpp-sdk-core', required : false, version : '>=1.8', include_type : 'system')

View file

@ -1,5 +1,6 @@
# FIXME: upstream to nixpkgs (do NOT build with gcc due to gcc coroutine bugs)
{
binutils,
lib,
stdenv,
fetchFromGitHub,
@ -8,6 +9,20 @@
zlib,
}:
assert stdenv.cc.isClang;
let
# HACK: work around https://github.com/NixOS/nixpkgs/issues/177129
# Though this is an issue between Clang and GCC,
# so it may not get fixed anytime soon...
empty-libgcc_eh = stdenv.mkDerivation {
pname = "empty-libgcc_eh";
version = "0";
dontUnpack = true;
installPhase = ''
mkdir -p "$out"/lib
"${binutils}"/bin/ar r "$out"/lib/libgcc_eh.a
'';
};
in
stdenv.mkDerivation rec {
pname = "capnproto";
version = "1.0.2";
@ -24,7 +39,7 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [
openssl
zlib
];
] ++ lib.optional (stdenv.cc.isClang && stdenv.targetPlatform.isStatic) empty-libgcc_eh;
# FIXME: separate the binaries from the stuff that user systems actually use
# This runs into a terrible UX issue in Lix and I just don't want to debug it

View file

@ -97,10 +97,10 @@
# Enable ANSI arrow keys.
(lib.enableFeature true "arrow-keys")
# Use termcap library to query terminal size.
(lib.enableFeature (ncurses != null) "termcap")
(lib.enableFeature true "termcap")
];
buildInputs = (prev.buildInputs or [ ]) ++ [ ncurses ];
propagatedBuildInputs = (prev.propagatedBuildInputs or [ ]) ++ [ ncurses ];
});
build-release-notes = callPackage ./maintainers/build-release-notes.nix { };
@ -245,9 +245,10 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs =
[
python3
python3.pkgs.pytest
python3.pkgs.pytest-xdist
(python3.pythonOnBuildForHost.withPackages (p: [
p.pytest
p.pytest-xdist
]))
meson
ninja
cmake

View file

@ -47,6 +47,7 @@ libcmd = library(
liblixfetchers,
liblixmain,
boehm,
ncurses,
editline,
lowdown,
nlohmann_json,