fix: don't use bash to call the builds allow them to infer from the shebang
This commit is contained in:
parent
fe8157bd15
commit
61139839b6
|
@ -1,15 +1,14 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.bash;
|
cfg = config.aux.foundation.stages.stage1.bash;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
includes = [./boot.nix];
|
{
|
||||||
|
includes = [ ./boot.nix ];
|
||||||
|
|
||||||
options.aux.foundation.stages.stage1.bash = {
|
options.aux.foundation.stages.stage1.bash = {
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -73,12 +72,13 @@ in {
|
||||||
sha256 = "132qng0jy600mv1fs95ylnlisx2wavkkgpb19c6kmz7lnmjhjwhk";
|
sha256 = "132qng0jy600mv1fs95ylnlisx2wavkkgpb19c6kmz7lnmjhjwhk";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
patches = [
|
let
|
||||||
# flush output for generated code
|
patches = [
|
||||||
./patches/mksignames-flush.patch
|
# flush output for generated code
|
||||||
];
|
./patches/mksignames-flush.patch
|
||||||
in
|
];
|
||||||
|
in
|
||||||
builders.bash.boot.build {
|
builders.bash.boot.build {
|
||||||
name = "bash-${cfg.version}";
|
name = "bash-${cfg.version}";
|
||||||
|
|
||||||
|
@ -109,7 +109,8 @@ in {
|
||||||
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
||||||
export AR="tcc -ar"
|
export AR="tcc -ar"
|
||||||
export LD=tcc
|
export LD=tcc
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.binutils;
|
cfg = config.aux.foundation.stages.stage1.binutils;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.binutils = {
|
options.aux.foundation.stages.stage1.binutils = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -65,32 +64,33 @@ in {
|
||||||
sha256 = "rppXieI0WeWWBuZxRyPy0//DHAMXQZHvDQFb3wYAdFA=";
|
sha256 = "rppXieI0WeWWBuZxRyPy0//DHAMXQZHvDQFb3wYAdFA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
patches = [
|
let
|
||||||
# Make binutils output deterministic by default.
|
patches = [
|
||||||
./patches/deterministic.patch
|
# Make binutils output deterministic by default.
|
||||||
];
|
./patches/deterministic.patch
|
||||||
|
];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--prefix=${builtins.placeholder "out"}"
|
"--prefix=${builtins.placeholder "out"}"
|
||||||
"--build=${platform.build}"
|
"--build=${platform.build}"
|
||||||
"--host=${platform.host}"
|
"--host=${platform.host}"
|
||||||
"--with-sysroot=/"
|
"--with-sysroot=/"
|
||||||
"--enable-deterministic-archives"
|
"--enable-deterministic-archives"
|
||||||
# depends on bison
|
# depends on bison
|
||||||
"--disable-gprofng"
|
"--disable-gprofng"
|
||||||
|
|
||||||
# Turn on --enable-new-dtags by default to make the linker set
|
# Turn on --enable-new-dtags by default to make the linker set
|
||||||
# RUNPATH instead of RPATH on binaries. This is important because
|
# RUNPATH instead of RPATH on binaries. This is important because
|
||||||
# RUNPATH can be overridden using LD_LIBRARY_PATH at runtime.
|
# RUNPATH can be overridden using LD_LIBRARY_PATH at runtime.
|
||||||
"--enable-new-dtags"
|
"--enable-new-dtags"
|
||||||
|
|
||||||
# By default binutils searches $libdir for libraries. This brings in
|
# By default binutils searches $libdir for libraries. This brings in
|
||||||
# libbfd and libopcodes into a default visibility. Drop default lib
|
# libbfd and libopcodes into a default visibility. Drop default lib
|
||||||
# path to force users to declare their use of these libraries.
|
# path to force users to declare their use of these libraries.
|
||||||
"--with-lib-path=:"
|
"--with-lib-path=:"
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
builders.bash.boot.build {
|
builders.bash.boot.build {
|
||||||
name = "binutils-${cfg.version}";
|
name = "binutils-${cfg.version}";
|
||||||
|
|
||||||
|
@ -133,7 +133,8 @@ in {
|
||||||
export AR="tcc -ar"
|
export AR="tcc -ar"
|
||||||
export lt_cv_sys_max_cmd_len=32768
|
export lt_cv_sys_max_cmd_len=32768
|
||||||
export CFLAGS="-D__LITTLE_ENDIAN__=1"
|
export CFLAGS="-D__LITTLE_ENDIAN__=1"
|
||||||
bash ./configure ${builtins.concatStringsSep " " configureFlags}
|
chmod +x ./configure
|
||||||
|
./configure ${builtins.concatStringsSep " " configureFlags}
|
||||||
|
|
||||||
# Build
|
# Build
|
||||||
make -j $NIX_BUILD_CORES all-libiberty all-gas all-bfd all-libctf all-zlib all-gprof
|
make -j $NIX_BUILD_CORES all-libiberty all-gas all-bfd all-libctf all-zlib all-gprof
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.bison;
|
cfg = config.aux.foundation.stages.stage1.bison;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.bison = {
|
options.aux.foundation.stages.stage1.bison = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -90,7 +89,8 @@ in {
|
||||||
cd bison-${cfg.version}
|
cd bison-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.coreutils;
|
cfg = config.aux.foundation.stages.stage1.coreutils;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
includes = [./boot.nix];
|
{
|
||||||
|
includes = [ ./boot.nix ];
|
||||||
|
|
||||||
options.aux.foundation.stages.stage1.coreutils = {
|
options.aux.foundation.stages.stage1.coreutils = {
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -67,17 +66,18 @@ in {
|
||||||
sha256 = "X2ANkJOXOwr+JTk9m8GMRPIjJlf0yg2V6jHHAutmtzk=";
|
sha256 = "X2ANkJOXOwr+JTk9m8GMRPIjJlf0yg2V6jHHAutmtzk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
configureFlags = [
|
let
|
||||||
"--prefix=${builtins.placeholder "out"}"
|
configureFlags = [
|
||||||
"--build=${platform.build}"
|
"--prefix=${builtins.placeholder "out"}"
|
||||||
"--host=${platform.host}"
|
"--build=${platform.build}"
|
||||||
# musl 1.1.x doesn't use 64bit time_t
|
"--host=${platform.host}"
|
||||||
"--disable-year2038"
|
# musl 1.1.x doesn't use 64bit time_t
|
||||||
# libstdbuf.so fails in static builds
|
"--disable-year2038"
|
||||||
"--enable-no-install-program=stdbuf"
|
# libstdbuf.so fails in static builds
|
||||||
];
|
"--enable-no-install-program=stdbuf"
|
||||||
in
|
];
|
||||||
|
in
|
||||||
builders.bash.boot.build {
|
builders.bash.boot.build {
|
||||||
name = "coreutils-${cfg.version}";
|
name = "coreutils-${cfg.version}";
|
||||||
|
|
||||||
|
@ -101,7 +101,8 @@ in {
|
||||||
# Configure
|
# Configure
|
||||||
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
||||||
export LD=tcc
|
export LD=tcc
|
||||||
bash ./configure ${builtins.concatStringsSep " " configureFlags}
|
chmod +x ./configure
|
||||||
|
./configure ${builtins.concatStringsSep " " configureFlags}
|
||||||
|
|
||||||
# Build
|
# Build
|
||||||
make -j $NIX_BUILD_CORES AR="tcc -ar" MAKEINFO="true"
|
make -j $NIX_BUILD_CORES AR="tcc -ar" MAKEINFO="true"
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.diffutils;
|
cfg = config.aux.foundation.stages.stage1.diffutils;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.diffutils = {
|
options.aux.foundation.stages.stage1.diffutils = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -91,7 +90,8 @@ in {
|
||||||
# Configure
|
# Configure
|
||||||
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
||||||
export LD=tcc
|
export LD=tcc
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host}
|
--host=${platform.host}
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.findutils;
|
cfg = config.aux.foundation.stages.stage1.findutils;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.findutils = {
|
options.aux.foundation.stages.stage1.findutils = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -96,7 +95,8 @@ in {
|
||||||
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
||||||
export AR="tcc -ar"
|
export AR="tcc -ar"
|
||||||
export LD=tcc
|
export LD=tcc
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host}
|
--host=${platform.host}
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.gawk.boot;
|
cfg = config.aux.foundation.stages.stage1.gawk.boot;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.gawk.boot = {
|
options.aux.foundation.stages.stage1.gawk.boot = {
|
||||||
package = lib.options.create {
|
package = lib.options.create {
|
||||||
type = lib.types.derivation;
|
type = lib.types.derivation;
|
||||||
|
@ -35,12 +34,13 @@ in {
|
||||||
sha256 = "1z4bibjm7ldvjwq3hmyifyb429rs2d9bdwkvs0r171vv1khpdwmb";
|
sha256 = "1z4bibjm7ldvjwq3hmyifyb429rs2d9bdwkvs0r171vv1khpdwmb";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
patches = [
|
let
|
||||||
# for reproducibility don't generate date stamp
|
patches = [
|
||||||
./patches/no-stamp.patch
|
# for reproducibility don't generate date stamp
|
||||||
];
|
./patches/no-stamp.patch
|
||||||
in
|
];
|
||||||
|
in
|
||||||
builders.bash.boot.build {
|
builders.bash.boot.build {
|
||||||
name = "gawk-boot-${cfg.version}";
|
name = "gawk-boot-${cfg.version}";
|
||||||
|
|
||||||
|
@ -68,7 +68,8 @@ in {
|
||||||
export CC="tcc -B ${stage1.tinycc.mes.libs.package}/lib"
|
export CC="tcc -B ${stage1.tinycc.mes.libs.package}/lib"
|
||||||
export ac_cv_func_getpgrp_void=yes
|
export ac_cv_func_getpgrp_void=yes
|
||||||
export ac_cv_func_tzset=yes
|
export ac_cv_func_tzset=yes
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.gawk;
|
cfg = config.aux.foundation.stages.stage1.gawk;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
includes = [./boot.nix];
|
{
|
||||||
|
includes = [ ./boot.nix ];
|
||||||
|
|
||||||
options.aux.foundation.stages.stage1.gawk = {
|
options.aux.foundation.stages.stage1.gawk = {
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -97,7 +96,8 @@ in {
|
||||||
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
||||||
export AR="tcc -ar"
|
export AR="tcc -ar"
|
||||||
export LD=tcc
|
export LD=tcc
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host}
|
--host=${platform.host}
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.gcc;
|
cfg = config.aux.foundation.stages.stage1.gcc;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
includes = [
|
includes = [
|
||||||
./v4.6.nix
|
./v4.6.nix
|
||||||
./v4.6.cxx.nix
|
./v4.6.cxx.nix
|
||||||
|
@ -201,7 +200,8 @@ in {
|
||||||
export CFLAGS_FOR_TARGET="-Wl,-dynamic-linker -Wl,${stage1.musl.package}/lib/libc.so"
|
export CFLAGS_FOR_TARGET="-Wl,-dynamic-linker -Wl,${stage1.musl.package}/lib/libc.so"
|
||||||
export LIBRARY_PATH="${stage1.musl.package}/lib"
|
export LIBRARY_PATH="${stage1.musl.package}/lib"
|
||||||
|
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.gcc.v46.cxx;
|
cfg = config.aux.foundation.stages.stage1.gcc.v46.cxx;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.gcc.v46.cxx = {
|
options.aux.foundation.stages.stage1.gcc.v46.cxx = {
|
||||||
package = lib.options.create {
|
package = lib.options.create {
|
||||||
type = lib.types.derivation;
|
type = lib.types.derivation;
|
||||||
|
@ -112,12 +111,13 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
patches = [
|
let
|
||||||
# Remove hardcoded NATIVE_SYSTEM_HEADER_DIR
|
patches = [
|
||||||
./patches/no-system-headers.patch
|
# Remove hardcoded NATIVE_SYSTEM_HEADER_DIR
|
||||||
];
|
./patches/no-system-headers.patch
|
||||||
in
|
];
|
||||||
|
in
|
||||||
builders.bash.build {
|
builders.bash.build {
|
||||||
name = "gcc-cxx-${cfg.version}";
|
name = "gcc-cxx-${cfg.version}";
|
||||||
|
|
||||||
|
@ -162,7 +162,8 @@ in {
|
||||||
export CPLUS_INCLUDE_PATH="$C_INCLUDE_PATH"
|
export CPLUS_INCLUDE_PATH="$C_INCLUDE_PATH"
|
||||||
export LIBRARY_PATH="${stage1.musl.package}/lib"
|
export LIBRARY_PATH="${stage1.musl.package}/lib"
|
||||||
|
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.gcc.v46;
|
cfg = config.aux.foundation.stages.stage1.gcc.v46;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.gcc.v46 = {
|
options.aux.foundation.stages.stage1.gcc.v46 = {
|
||||||
package = lib.options.create {
|
package = lib.options.create {
|
||||||
type = lib.types.derivation;
|
type = lib.types.derivation;
|
||||||
|
@ -112,12 +111,13 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
patches = [
|
let
|
||||||
# Remove hardcoded NATIVE_SYSTEM_HEADER_DIR
|
patches = [
|
||||||
./patches/no-system-headers.patch
|
# Remove hardcoded NATIVE_SYSTEM_HEADER_DIR
|
||||||
];
|
./patches/no-system-headers.patch
|
||||||
in
|
];
|
||||||
|
in
|
||||||
builders.bash.build {
|
builders.bash.build {
|
||||||
name = "gcc-${cfg.version}";
|
name = "gcc-${cfg.version}";
|
||||||
|
|
||||||
|
@ -163,7 +163,8 @@ in {
|
||||||
export ac_cv_func_memcpy=yes
|
export ac_cv_func_memcpy=yes
|
||||||
export ac_cv_func_strerror=yes
|
export ac_cv_func_strerror=yes
|
||||||
|
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.gcc.v8;
|
cfg = config.aux.foundation.stages.stage1.gcc.v8;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.gcc.v8 = {
|
options.aux.foundation.stages.stage1.gcc.v8 = {
|
||||||
package = lib.options.create {
|
package = lib.options.create {
|
||||||
type = lib.types.derivation;
|
type = lib.types.derivation;
|
||||||
|
@ -168,7 +167,8 @@ in {
|
||||||
export CPLUS_INCLUDE_PATH="$C_INCLUDE_PATH"
|
export CPLUS_INCLUDE_PATH="$C_INCLUDE_PATH"
|
||||||
export LIBRARY_PATH="${stage1.musl.package}/lib"
|
export LIBRARY_PATH="${stage1.musl.package}/lib"
|
||||||
|
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.gnum4;
|
cfg = config.aux.foundation.stages.stage1.gnum4;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.gnum4 = {
|
options.aux.foundation.stages.stage1.gnum4 = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -89,7 +88,8 @@ in {
|
||||||
cd m4-${cfg.version}
|
cd m4-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.gnumake;
|
cfg = config.aux.foundation.stages.stage1.gnumake;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
includes = [./boot.nix];
|
{
|
||||||
|
includes = [ ./boot.nix ];
|
||||||
|
|
||||||
options.aux.foundation.stages.stage1.gnumake = {
|
options.aux.foundation.stages.stage1.gnumake = {
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -67,16 +66,17 @@ in {
|
||||||
sha256 = "3Rb7HWe/q3mnL16DkHNcSePo5wtJRaFasfgd23hlj7M=";
|
sha256 = "3Rb7HWe/q3mnL16DkHNcSePo5wtJRaFasfgd23hlj7M=";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
patches = [
|
let
|
||||||
# Replaces /bin/sh with sh, see patch file for reasoning
|
patches = [
|
||||||
./patches/0001-No-impure-bin-sh.patch
|
# Replaces /bin/sh with sh, see patch file for reasoning
|
||||||
# Purity: don't look for library dependencies (of the form `-lfoo') in /lib
|
./patches/0001-No-impure-bin-sh.patch
|
||||||
# and /usr/lib. It's a stupid feature anyway. Likewise, when searching for
|
# Purity: don't look for library dependencies (of the form `-lfoo') in /lib
|
||||||
# included Makefiles, don't look in /usr/include and friends.
|
# and /usr/lib. It's a stupid feature anyway. Likewise, when searching for
|
||||||
./patches/0002-remove-impure-dirs.patch
|
# included Makefiles, don't look in /usr/include and friends.
|
||||||
];
|
./patches/0002-remove-impure-dirs.patch
|
||||||
in
|
];
|
||||||
|
in
|
||||||
builders.bash.boot.build {
|
builders.bash.boot.build {
|
||||||
name = "gnumake-${cfg.version}";
|
name = "gnumake-${cfg.version}";
|
||||||
|
|
||||||
|
@ -104,7 +104,8 @@ in {
|
||||||
# Configure
|
# Configure
|
||||||
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
||||||
export LD=tcc
|
export LD=tcc
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host}
|
--host=${platform.host}
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.gnutar.boot;
|
cfg = config.aux.foundation.stages.stage1.gnutar.boot;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.gnutar.boot = {
|
options.aux.foundation.stages.stage1.gnutar.boot = {
|
||||||
package = lib.options.create {
|
package = lib.options.create {
|
||||||
type = lib.types.derivation;
|
type = lib.types.derivation;
|
||||||
|
@ -35,8 +34,9 @@ in {
|
||||||
sha256 = "02m6gajm647n8l9a5bnld6fnbgdpyi4i3i83p7xcwv0kif47xhy6";
|
sha256 = "02m6gajm647n8l9a5bnld6fnbgdpyi4i3i83p7xcwv0kif47xhy6";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
in
|
let
|
||||||
|
in
|
||||||
builders.bash.boot.build {
|
builders.bash.boot.build {
|
||||||
name = "gnutar-boot-${cfg.version}";
|
name = "gnutar-boot-${cfg.version}";
|
||||||
|
|
||||||
|
@ -58,7 +58,8 @@ in {
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
export CC="tcc -B ${stage1.tinycc.mes.libs.package}/lib"
|
export CC="tcc -B ${stage1.tinycc.mes.libs.package}/lib"
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.gnutar;
|
cfg = config.aux.foundation.stages.stage1.gnutar;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
includes = [
|
includes = [
|
||||||
./boot.nix
|
./boot.nix
|
||||||
./musl.nix
|
./musl.nix
|
||||||
|
@ -99,7 +98,8 @@ in {
|
||||||
cd tar-${cfg.version}
|
cd tar-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.gnutar.musl;
|
cfg = config.aux.foundation.stages.stage1.gnutar.musl;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.gnutar.musl = {
|
options.aux.foundation.stages.stage1.gnutar.musl = {
|
||||||
package = lib.options.create {
|
package = lib.options.create {
|
||||||
type = lib.types.derivation;
|
type = lib.types.derivation;
|
||||||
|
@ -60,7 +59,8 @@ in {
|
||||||
export ac_cv_sizeof_unsigned_long=4
|
export ac_cv_sizeof_unsigned_long=4
|
||||||
export ac_cv_sizeof_long_long=8
|
export ac_cv_sizeof_long_long=8
|
||||||
export ac_cv_header_netdb_h=no
|
export ac_cv_header_netdb_h=no
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,13 +1,12 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.gzip;
|
cfg = config.aux.foundation.stages.stage1.gzip;
|
||||||
|
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.gzip = {
|
options.aux.foundation.stages.stage1.gzip = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -64,38 +63,37 @@ in {
|
||||||
sha256 = "0ryr5b00qz3xcdcv03qwjdfji8pasp0007ay3ppmk71wl8c1i90w";
|
sha256 = "0ryr5b00qz3xcdcv03qwjdfji8pasp0007ay3ppmk71wl8c1i90w";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package = builders.bash.boot.build {
|
||||||
in
|
name = "gzip-${cfg.version}";
|
||||||
builders.bash.boot.build {
|
meta = cfg.meta;
|
||||||
name = "gzip-${cfg.version}";
|
|
||||||
meta = cfg.meta;
|
|
||||||
|
|
||||||
deps.build.host = [
|
deps.build.host = [
|
||||||
stage1.tinycc.mes.compiler.package
|
stage1.tinycc.mes.compiler.package
|
||||||
stage1.gnumake.boot.package
|
stage1.gnumake.boot.package
|
||||||
stage1.gnused.boot.package
|
stage1.gnused.boot.package
|
||||||
stage1.gnugrep.package
|
stage1.gnugrep.package
|
||||||
];
|
];
|
||||||
|
|
||||||
script = ''
|
script = ''
|
||||||
# Unpack
|
# Unpack
|
||||||
ungz --file ${cfg.src} --output gzip.tar
|
ungz --file ${cfg.src} --output gzip.tar
|
||||||
untar --file gzip.tar
|
untar --file gzip.tar
|
||||||
rm gzip.tar
|
rm gzip.tar
|
||||||
cd gzip-${cfg.version}
|
cd gzip-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
export CC="tcc -B ${stage1.tinycc.mes.libs.package}/lib -Dstrlwr=unused"
|
export CC="tcc -B ${stage1.tinycc.mes.libs.package}/lib -Dstrlwr=unused"
|
||||||
bash ./configure --prefix=$out
|
chmod +x ./configure
|
||||||
|
./configure --prefix=$out
|
||||||
|
|
||||||
# Build
|
# Build
|
||||||
make
|
make
|
||||||
|
|
||||||
# Install
|
# Install
|
||||||
mkdir $out
|
mkdir $out
|
||||||
make install
|
make install
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.musl.boot;
|
cfg = config.aux.foundation.stages.stage1.musl.boot;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.musl.boot = {
|
options.aux.foundation.stages.stage1.musl.boot = {
|
||||||
package = lib.options.create {
|
package = lib.options.create {
|
||||||
type = lib.types.derivation;
|
type = lib.types.derivation;
|
||||||
|
@ -35,52 +34,53 @@ in {
|
||||||
sha256 = "E3DJqBKyzyp9koAlEMygBYzDfmanvt1wBR8KNAFQIqM=";
|
sha256 = "E3DJqBKyzyp9koAlEMygBYzDfmanvt1wBR8KNAFQIqM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
# Thanks to the live-bootstrap project!
|
let
|
||||||
# See https://github.com/fosslinux/live-bootstrap/blob/d98f97e21413efc32c770d0356f1feda66025686/sysa/musl-1.1.24/musl-1.1.24.sh
|
# Thanks to the live-bootstrap project!
|
||||||
liveBootstrap = "https://github.com/fosslinux/live-bootstrap/raw/d98f97e21413efc32c770d0356f1feda66025686/sysa/musl-1.1.24";
|
# See https://github.com/fosslinux/live-bootstrap/blob/d98f97e21413efc32c770d0356f1feda66025686/sysa/musl-1.1.24/musl-1.1.24.sh
|
||||||
patches = [
|
liveBootstrap = "https://github.com/fosslinux/live-bootstrap/raw/d98f97e21413efc32c770d0356f1feda66025686/sysa/musl-1.1.24";
|
||||||
(builtins.fetchurl {
|
patches = [
|
||||||
url = "${liveBootstrap}/patches/avoid_set_thread_area.patch";
|
(builtins.fetchurl {
|
||||||
sha256 = "TsbBZXk4/KMZG9EKi7cF+sullVXrxlizLNH0UHGXsPs=";
|
url = "${liveBootstrap}/patches/avoid_set_thread_area.patch";
|
||||||
})
|
sha256 = "TsbBZXk4/KMZG9EKi7cF+sullVXrxlizLNH0UHGXsPs=";
|
||||||
(builtins.fetchurl {
|
})
|
||||||
url = "${liveBootstrap}/patches/avoid_sys_clone.patch";
|
(builtins.fetchurl {
|
||||||
sha256 = "/ZmH64J57MmbxdfQ4RNjamAiBdkImMTlHsHdgV4gMj4=";
|
url = "${liveBootstrap}/patches/avoid_sys_clone.patch";
|
||||||
})
|
sha256 = "/ZmH64J57MmbxdfQ4RNjamAiBdkImMTlHsHdgV4gMj4=";
|
||||||
(builtins.fetchurl {
|
})
|
||||||
url = "${liveBootstrap}/patches/fenv.patch";
|
(builtins.fetchurl {
|
||||||
sha256 = "vMVGjoN4deAJW5gsSqA207SJqAbvhrnOsGK49DdEiTI=";
|
url = "${liveBootstrap}/patches/fenv.patch";
|
||||||
})
|
sha256 = "vMVGjoN4deAJW5gsSqA207SJqAbvhrnOsGK49DdEiTI=";
|
||||||
(builtins.fetchurl {
|
})
|
||||||
url = "${liveBootstrap}/patches/makefile.patch";
|
(builtins.fetchurl {
|
||||||
sha256 = "03iYBAUnsrEdLIIhhhq5mM6BGnPn2EfUmIHu51opxbw=";
|
url = "${liveBootstrap}/patches/makefile.patch";
|
||||||
})
|
sha256 = "03iYBAUnsrEdLIIhhhq5mM6BGnPn2EfUmIHu51opxbw=";
|
||||||
(builtins.fetchurl {
|
})
|
||||||
url = "${liveBootstrap}/patches/musl_weak_symbols.patch";
|
(builtins.fetchurl {
|
||||||
sha256 = "/d9a2eUkpe9uyi1ye6T4CiYc9MR3FZ9na0Gb90+g4v0=";
|
url = "${liveBootstrap}/patches/musl_weak_symbols.patch";
|
||||||
})
|
sha256 = "/d9a2eUkpe9uyi1ye6T4CiYc9MR3FZ9na0Gb90+g4v0=";
|
||||||
(builtins.fetchurl {
|
})
|
||||||
url = "${liveBootstrap}/patches/set_thread_area.patch";
|
(builtins.fetchurl {
|
||||||
sha256 = "RIZYqbbRSx4X/0iFUhriwwBRmoXVR295GNBUjf2UrM0=";
|
url = "${liveBootstrap}/patches/set_thread_area.patch";
|
||||||
})
|
sha256 = "RIZYqbbRSx4X/0iFUhriwwBRmoXVR295GNBUjf2UrM0=";
|
||||||
(builtins.fetchurl {
|
})
|
||||||
url = "${liveBootstrap}/patches/sigsetjmp.patch";
|
(builtins.fetchurl {
|
||||||
sha256 = "wd2Aev1zPJXy3q933aiup5p1IMKzVJBquAyl3gbK4PU=";
|
url = "${liveBootstrap}/patches/sigsetjmp.patch";
|
||||||
})
|
sha256 = "wd2Aev1zPJXy3q933aiup5p1IMKzVJBquAyl3gbK4PU=";
|
||||||
# FIXME: this patch causes the build to fail
|
})
|
||||||
# (builtins.fetchurl {
|
# FIXME: this patch causes the build to fail
|
||||||
# url = "${liveBootstrap}/patches/stdio_flush_on_exit.patch";
|
# (builtins.fetchurl {
|
||||||
# sha256 = "/z5ze3h3QTysay8nRvyvwPv3pmTcKptdkBIaMCoeLDg=";
|
# url = "${liveBootstrap}/patches/stdio_flush_on_exit.patch";
|
||||||
# })
|
# sha256 = "/z5ze3h3QTysay8nRvyvwPv3pmTcKptdkBIaMCoeLDg=";
|
||||||
# HACK: always flush stdio immediately
|
# })
|
||||||
./patches/always-flush.patch
|
# HACK: always flush stdio immediately
|
||||||
(builtins.fetchurl {
|
./patches/always-flush.patch
|
||||||
url = "${liveBootstrap}/patches/va_list.patch";
|
(builtins.fetchurl {
|
||||||
sha256 = "UmcMIl+YCi3wIeVvjbsCyqFlkyYsM4ECNwTfXP+s7vg=";
|
url = "${liveBootstrap}/patches/va_list.patch";
|
||||||
})
|
sha256 = "UmcMIl+YCi3wIeVvjbsCyqFlkyYsM4ECNwTfXP+s7vg=";
|
||||||
];
|
})
|
||||||
in
|
];
|
||||||
|
in
|
||||||
builders.bash.boot.build {
|
builders.bash.boot.build {
|
||||||
name = "musl-boot-${cfg.version}";
|
name = "musl-boot-${cfg.version}";
|
||||||
|
|
||||||
|
@ -118,7 +118,8 @@ in {
|
||||||
src/misc/wordexp.c
|
src/misc/wordexp.c
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.musl;
|
cfg = config.aux.foundation.stages.stage1.musl;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
includes = [./boot.nix];
|
{
|
||||||
|
includes = [ ./boot.nix ];
|
||||||
|
|
||||||
options.aux.foundation.stages.stage1.musl = {
|
options.aux.foundation.stages.stage1.musl = {
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -99,7 +98,8 @@ in {
|
||||||
src/misc/wordexp.c
|
src/misc/wordexp.c
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.python;
|
cfg = config.aux.foundation.stages.stage1.python;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.python = {
|
options.aux.foundation.stages.stage1.python = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -65,16 +64,17 @@ in {
|
||||||
sha256 = "eVw09E30Wg6blxDIxxwVxnGHFSTNQSyhTe8hLozLFV0=";
|
sha256 = "eVw09E30Wg6blxDIxxwVxnGHFSTNQSyhTe8hLozLFV0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
patches = [
|
let
|
||||||
# Disable the use of ldconfig in ctypes.util.find_library (since
|
patches = [
|
||||||
# ldconfig doesn't work on NixOS), and don't use
|
# Disable the use of ldconfig in ctypes.util.find_library (since
|
||||||
# ctypes.util.find_library during the loading of the uuid module
|
# ldconfig doesn't work on NixOS), and don't use
|
||||||
# (since it will do a futile invocation of gcc (!) to find
|
# ctypes.util.find_library during the loading of the uuid module
|
||||||
# libuuid, slowing down program startup a lot).
|
# (since it will do a futile invocation of gcc (!) to find
|
||||||
./patches/no-ldconfig.patch
|
# libuuid, slowing down program startup a lot).
|
||||||
];
|
./patches/no-ldconfig.patch
|
||||||
in
|
];
|
||||||
|
in
|
||||||
builders.bash.build {
|
builders.bash.build {
|
||||||
name = "python-${cfg.version}";
|
name = "python-${cfg.version}";
|
||||||
meta = cfg.meta;
|
meta = cfg.meta;
|
||||||
|
@ -107,7 +107,8 @@ in {
|
||||||
export C_INCLUDE_PATH="${stage1.zlib.package}/include"
|
export C_INCLUDE_PATH="${stage1.zlib.package}/include"
|
||||||
export LIBRARY_PATH="${stage1.zlib.package}/lib"
|
export LIBRARY_PATH="${stage1.zlib.package}/lib"
|
||||||
export LD_LIBRARY_PATH="$LIBRARY_PATH"
|
export LD_LIBRARY_PATH="$LIBRARY_PATH"
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host}
|
--host=${platform.host}
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.xz;
|
cfg = config.aux.foundation.stages.stage1.xz;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.xz = {
|
options.aux.foundation.stages.stage1.xz = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -92,7 +91,8 @@ in {
|
||||||
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
export CC="tcc -B ${stage1.tinycc.musl.libs.package}/lib"
|
||||||
export AR="tcc -ar"
|
export AR="tcc -ar"
|
||||||
export LD=tcc
|
export LD=tcc
|
||||||
bash ./configure \
|
chmod +x configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage1.zlib;
|
cfg = config.aux.foundation.stages.stage1.zlib;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage1.zlib = {
|
options.aux.foundation.stages.stage1.zlib = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -87,7 +86,8 @@ in {
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
export CC=musl-gcc
|
export CC=musl-gcc
|
||||||
bash ./configure --prefix=$out
|
chmod +x configure
|
||||||
|
./configure --prefix=$out
|
||||||
|
|
||||||
# Build
|
# Build
|
||||||
make -j $NIX_BUILD_CORES
|
make -j $NIX_BUILD_CORES
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.bash;
|
cfg = config.aux.foundation.stages.stage2.bash;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.bash = {
|
options.aux.foundation.stages.stage2.bash = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -98,7 +97,8 @@ in {
|
||||||
cd bash-${cfg.version}
|
cd bash-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.binutils;
|
cfg = config.aux.foundation.stages.stage2.binutils;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.binutils = {
|
options.aux.foundation.stages.stage2.binutils = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -65,35 +64,36 @@ in {
|
||||||
sha256 = "rppXieI0WeWWBuZxRyPy0//DHAMXQZHvDQFb3wYAdFA=";
|
sha256 = "rppXieI0WeWWBuZxRyPy0//DHAMXQZHvDQFb3wYAdFA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
patches = [
|
let
|
||||||
# Make binutils output deterministic by default.
|
patches = [
|
||||||
./patches/deterministic.patch
|
# Make binutils output deterministic by default.
|
||||||
];
|
./patches/deterministic.patch
|
||||||
|
];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"CC=musl-gcc"
|
"CC=musl-gcc"
|
||||||
"LDFLAGS=--static"
|
"LDFLAGS=--static"
|
||||||
"--prefix=${builtins.placeholder "out"}"
|
"--prefix=${builtins.placeholder "out"}"
|
||||||
"--build=${platform.build}"
|
"--build=${platform.build}"
|
||||||
"--host=${platform.host}"
|
"--host=${platform.host}"
|
||||||
|
|
||||||
"--with-sysroot=/"
|
"--with-sysroot=/"
|
||||||
"--enable-deterministic-archives"
|
"--enable-deterministic-archives"
|
||||||
# depends on bison
|
# depends on bison
|
||||||
"--disable-gprofng"
|
"--disable-gprofng"
|
||||||
|
|
||||||
# Turn on --enable-new-dtags by default to make the linker set
|
# Turn on --enable-new-dtags by default to make the linker set
|
||||||
# RUNPATH instead of RPATH on binaries. This is important because
|
# RUNPATH instead of RPATH on binaries. This is important because
|
||||||
# RUNPATH can be overridden using LD_LIBRARY_PATH at runtime.
|
# RUNPATH can be overridden using LD_LIBRARY_PATH at runtime.
|
||||||
"--enable-new-dtags"
|
"--enable-new-dtags"
|
||||||
|
|
||||||
# By default binutils searches $libdir for libraries. This brings in
|
# By default binutils searches $libdir for libraries. This brings in
|
||||||
# libbfd and libopcodes into a default visibility. Drop default lib
|
# libbfd and libopcodes into a default visibility. Drop default lib
|
||||||
# path to force users to declare their use of these libraries.
|
# path to force users to declare their use of these libraries.
|
||||||
"--with-lib-path=:"
|
"--with-lib-path=:"
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
builders.bash.build {
|
builders.bash.build {
|
||||||
name = "binutils-static-${cfg.version}";
|
name = "binutils-static-${cfg.version}";
|
||||||
|
|
||||||
|
@ -123,7 +123,8 @@ in {
|
||||||
${lib.strings.concatMapSep "\n" (file: "patch -Np1 -i ${file}") patches}
|
${lib.strings.concatMapSep "\n" (file: "patch -Np1 -i ${file}") patches}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure ${builtins.concatStringsSep " " configureFlags}
|
chmod +x ./configure
|
||||||
|
./configure ${builtins.concatStringsSep " " configureFlags}
|
||||||
|
|
||||||
# Build
|
# Build
|
||||||
make -j $NIX_BUILD_CORES
|
make -j $NIX_BUILD_CORES
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.coreutils;
|
cfg = config.aux.foundation.stages.stage2.coreutils;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.coreutils = {
|
options.aux.foundation.stages.stage2.coreutils = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -65,18 +64,19 @@ in {
|
||||||
sha256 = "X2ANkJOXOwr+JTk9m8GMRPIjJlf0yg2V6jHHAutmtzk=";
|
sha256 = "X2ANkJOXOwr+JTk9m8GMRPIjJlf0yg2V6jHHAutmtzk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
configureFlags = [
|
let
|
||||||
"--prefix=${builtins.placeholder "out"}"
|
configureFlags = [
|
||||||
"--build=${platform.build}"
|
"--prefix=${builtins.placeholder "out"}"
|
||||||
"--host=${platform.host}"
|
"--build=${platform.build}"
|
||||||
# libstdbuf.so fails in static builds
|
"--host=${platform.host}"
|
||||||
"--enable-no-install-program=stdbuf"
|
# libstdbuf.so fails in static builds
|
||||||
"--enable-single-binary=symlinks"
|
"--enable-no-install-program=stdbuf"
|
||||||
"CC=musl-gcc"
|
"--enable-single-binary=symlinks"
|
||||||
"CFLAGS=-static"
|
"CC=musl-gcc"
|
||||||
];
|
"CFLAGS=-static"
|
||||||
in
|
];
|
||||||
|
in
|
||||||
builders.bash.build {
|
builders.bash.build {
|
||||||
name = "coreutils-${cfg.version}";
|
name = "coreutils-${cfg.version}";
|
||||||
|
|
||||||
|
@ -102,7 +102,8 @@ in {
|
||||||
cd coreutils-${cfg.version}
|
cd coreutils-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure ${builtins.concatStringsSep " " configureFlags}
|
chmod +x ./configure
|
||||||
|
./configure ${builtins.concatStringsSep " " configureFlags}
|
||||||
|
|
||||||
# Build
|
# Build
|
||||||
make -j $NIX_BUILD_CORES
|
make -j $NIX_BUILD_CORES
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.diffutils;
|
cfg = config.aux.foundation.stages.stage2.diffutils;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.diffutils = {
|
options.aux.foundation.stages.stage2.diffutils = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -90,7 +89,8 @@ in {
|
||||||
cd diffutils-${cfg.version}
|
cd diffutils-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.findutils;
|
cfg = config.aux.foundation.stages.stage2.findutils;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.findutils = {
|
options.aux.foundation.stages.stage2.findutils = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -90,7 +89,8 @@ in {
|
||||||
cd findutils-${cfg.version}
|
cd findutils-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.gawk;
|
cfg = config.aux.foundation.stages.stage2.gawk;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.gawk = {
|
options.aux.foundation.stages.stage2.gawk = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -96,7 +95,8 @@ in {
|
||||||
cd gawk-${cfg.version}
|
cd gawk-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.gcc;
|
cfg = config.aux.foundation.stages.stage2.gcc;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.gcc = {
|
options.aux.foundation.stages.stage2.gcc = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -195,7 +194,8 @@ in {
|
||||||
export CFLAGS_FOR_TARGET="-Wl,-dynamic-linker -Wl,${stage1.musl.package}/lib/libc.so"
|
export CFLAGS_FOR_TARGET="-Wl,-dynamic-linker -Wl,${stage1.musl.package}/lib/libc.so"
|
||||||
export LIBRARY_PATH="${stage1.musl.package}/lib"
|
export LIBRARY_PATH="${stage1.musl.package}/lib"
|
||||||
|
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.glibc;
|
cfg = config.aux.foundation.stages.stage2.glibc;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
|
@ -9,7 +7,8 @@
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
stage2 = config.aux.foundation.stages.stage2;
|
stage2 = config.aux.foundation.stages.stage2;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.glibc = {
|
options.aux.foundation.stages.stage2.glibc = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -95,7 +94,8 @@ in {
|
||||||
cd build
|
cd build
|
||||||
# libstdc++.so is built against musl and fails to link
|
# libstdc++.so is built against musl and fails to link
|
||||||
export CXX=false
|
export CXX=false
|
||||||
bash ../configure \
|
chmod +x ../configure
|
||||||
|
../configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.gnugrep;
|
cfg = config.aux.foundation.stages.stage2.gnugrep;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.gnugrep = {
|
options.aux.foundation.stages.stage2.gnugrep = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -95,7 +94,8 @@ in {
|
||||||
cd grep-${cfg.version}
|
cd grep-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.gnumake;
|
cfg = config.aux.foundation.stages.stage2.gnumake;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
|
@ -9,7 +7,8 @@
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
stage2 = config.aux.foundation.stages.stage2;
|
stage2 = config.aux.foundation.stages.stage2;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.gnumake = {
|
options.aux.foundation.stages.stage2.gnumake = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -66,16 +65,17 @@ in {
|
||||||
sha256 = "3Rb7HWe/q3mnL16DkHNcSePo5wtJRaFasfgd23hlj7M=";
|
sha256 = "3Rb7HWe/q3mnL16DkHNcSePo5wtJRaFasfgd23hlj7M=";
|
||||||
};
|
};
|
||||||
|
|
||||||
package = let
|
package =
|
||||||
patches = [
|
let
|
||||||
# Replaces /bin/sh with sh, see patch file for reasoning
|
patches = [
|
||||||
./patches/0001-No-impure-bin-sh.patch
|
# Replaces /bin/sh with sh, see patch file for reasoning
|
||||||
# Purity: don't look for library dependencies (of the form `-lfoo') in /lib
|
./patches/0001-No-impure-bin-sh.patch
|
||||||
# and /usr/lib. It's a stupid feature anyway. Likewise, when searching for
|
# Purity: don't look for library dependencies (of the form `-lfoo') in /lib
|
||||||
# included Makefiles, don't look in /usr/include and friends.
|
# and /usr/lib. It's a stupid feature anyway. Likewise, when searching for
|
||||||
./patches/0002-remove-impure-dirs.patch
|
# included Makefiles, don't look in /usr/include and friends.
|
||||||
];
|
./patches/0002-remove-impure-dirs.patch
|
||||||
in
|
];
|
||||||
|
in
|
||||||
builders.bash.boot.build {
|
builders.bash.boot.build {
|
||||||
name = "gnumake-static-${cfg.version}";
|
name = "gnumake-static-${cfg.version}";
|
||||||
|
|
||||||
|
@ -105,7 +105,8 @@ in {
|
||||||
${lib.strings.concatMapSep "\n" (file: "patch -Np1 -i ${file}") patches}
|
${lib.strings.concatMapSep "\n" (file: "patch -Np1 -i ${file}") patches}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.gnupatch;
|
cfg = config.aux.foundation.stages.stage2.gnupatch;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.gnupatch = {
|
options.aux.foundation.stages.stage2.gnupatch = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -91,7 +90,8 @@ in {
|
||||||
cd patch-${cfg.version}
|
cd patch-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.gnused;
|
cfg = config.aux.foundation.stages.stage2.gnused;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.gnused = {
|
options.aux.foundation.stages.stage2.gnused = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -97,7 +96,8 @@ in {
|
||||||
cd sed-${cfg.version}
|
cd sed-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.gnutar;
|
cfg = config.aux.foundation.stages.stage2.gnutar;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.gnutar = {
|
options.aux.foundation.stages.stage2.gnutar = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -96,7 +95,8 @@ in {
|
||||||
cd tar-${cfg.version}
|
cd tar-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.gzip;
|
cfg = config.aux.foundation.stages.stage2.gzip;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
builders = config.aux.foundation.builders;
|
builders = config.aux.foundation.builders;
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.gzip = {
|
options.aux.foundation.stages.stage2.gzip = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -89,7 +88,8 @@ in {
|
||||||
cd gzip-${cfg.version}
|
cd gzip-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
{
|
{ lib, config }:
|
||||||
lib,
|
let
|
||||||
config,
|
|
||||||
}: let
|
|
||||||
cfg = config.aux.foundation.stages.stage2.patchelf;
|
cfg = config.aux.foundation.stages.stage2.patchelf;
|
||||||
|
|
||||||
platform = config.aux.platform;
|
platform = config.aux.platform;
|
||||||
|
@ -9,7 +7,8 @@
|
||||||
|
|
||||||
stage1 = config.aux.foundation.stages.stage1;
|
stage1 = config.aux.foundation.stages.stage1;
|
||||||
stage2 = config.aux.foundation.stages.stage2;
|
stage2 = config.aux.foundation.stages.stage2;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.aux.foundation.stages.stage2.patchelf = {
|
options.aux.foundation.stages.stage2.patchelf = {
|
||||||
meta = {
|
meta = {
|
||||||
description = lib.options.create {
|
description = lib.options.create {
|
||||||
|
@ -90,7 +89,8 @@ in {
|
||||||
cd patchelf-${cfg.version}
|
cd patchelf-${cfg.version}
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
bash ./configure \
|
chmod +x ./configure
|
||||||
|
./configure \
|
||||||
--prefix=$out \
|
--prefix=$out \
|
||||||
--build=${platform.build} \
|
--build=${platform.build} \
|
||||||
--host=${platform.host} \
|
--host=${platform.host} \
|
||||||
|
|
Loading…
Reference in a new issue