mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +00:00
fix monolithic build
This commit is contained in:
parent
cdaaa97184
commit
a40848ba39
@ -87,13 +87,14 @@ let
|
|||||||
monolithic = with pkgs;
|
monolithic = with pkgs;
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "retro68.monolithic";
|
name = "retro68.monolithic";
|
||||||
srcs = ./.;
|
src = ./.;
|
||||||
nativeBuildInputs = [cmake bison flex ruby ninja];
|
nativeBuildInputs = [cmake bison flex ruby ninja bash];
|
||||||
buildInputs = [boost gmp mpfr libmpc zlib]
|
buildInputs = [boost gmp mpfr libmpc zlib]
|
||||||
++ lib.optional hostPlatform.isDarwin darwin.apple_sdk.frameworks.ApplicationServices;
|
++ lib.optional hostPlatform.isDarwin darwin.apple_sdk.frameworks.ApplicationServices;
|
||||||
buildCommand = ''
|
buildCommand = ''
|
||||||
bash $src/build-toolchain.bash --ninja --prefix=$out --no-carbon
|
bash $src/build-toolchain.bash --ninja --prefix=$out --no-carbon
|
||||||
'';
|
'';
|
||||||
|
hardeningDisable = [ "format" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
# ----------- Native Tools -------------
|
# ----------- Native Tools -------------
|
||||||
|
Loading…
Reference in New Issue
Block a user