2018-12-05 03:17:22 +00:00
|
|
|
|
# Overlay that builds static packages.
|
|
|
|
|
|
|
|
|
|
# Not all packages will build but support is done on a
|
|
|
|
|
# best effort basic.
|
|
|
|
|
#
|
|
|
|
|
# Note on Darwin/macOS: Apple does not provide a static libc
|
|
|
|
|
# so any attempts at static binaries are going to be very
|
|
|
|
|
# unsupported.
|
|
|
|
|
#
|
|
|
|
|
# Basic things like pkgsStatic.hello should work out of the box. More
|
|
|
|
|
# complicated things will need to be fixed with overrides.
|
|
|
|
|
|
|
|
|
|
self: super: let
|
|
|
|
|
inherit (super.stdenvAdapters) makeStaticBinaries
|
2019-07-24 15:04:51 +01:00
|
|
|
|
makeStaticLibraries
|
|
|
|
|
propagateBuildInputs;
|
2019-09-10 03:42:03 +01:00
|
|
|
|
inherit (super.lib) foldl optional flip id composeExtensions optionalAttrs;
|
2018-12-05 03:17:22 +00:00
|
|
|
|
inherit (super) makeSetupHook;
|
|
|
|
|
|
|
|
|
|
# Best effort static binaries. Will still be linked to libSystem,
|
|
|
|
|
# but more portable than Nix store binaries.
|
|
|
|
|
makeStaticDarwin = stdenv: stdenv // {
|
|
|
|
|
mkDerivation = args: stdenv.mkDerivation (args // {
|
|
|
|
|
NIX_CFLAGS_LINK = toString (args.NIX_CFLAGS_LINK or "")
|
|
|
|
|
+ " -static-libgcc";
|
|
|
|
|
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ (makeSetupHook {
|
|
|
|
|
substitutions = {
|
|
|
|
|
libsystem = "${stdenv.cc.libc}/lib/libSystem.B.dylib";
|
|
|
|
|
};
|
|
|
|
|
} ../stdenv/darwin/portable-libsystem.sh) ];
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2019-07-24 15:04:51 +01:00
|
|
|
|
staticAdapters = [ makeStaticLibraries propagateBuildInputs ]
|
2018-12-05 03:17:22 +00:00
|
|
|
|
|
|
|
|
|
# Apple does not provide a static version of libSystem or crt0.o
|
|
|
|
|
# So we can’t build static binaries without extensive hacks.
|
|
|
|
|
++ optional (!super.stdenv.hostPlatform.isDarwin) makeStaticBinaries
|
|
|
|
|
|
|
|
|
|
++ optional super.stdenv.hostPlatform.isDarwin makeStaticDarwin
|
|
|
|
|
|
|
|
|
|
# Glibc doesn’t come with static runtimes by default.
|
|
|
|
|
# ++ optional (super.stdenv.hostPlatform.libc == "glibc") ((flip overrideInStdenv) [ self.stdenv.glibc.static ])
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
# Force everything to link statically.
|
|
|
|
|
haskellStaticAdapter = self: super: {
|
|
|
|
|
mkDerivation = attrs: super.mkDerivation (attrs // {
|
|
|
|
|
enableSharedLibraries = false;
|
|
|
|
|
enableSharedExecutables = false;
|
|
|
|
|
enableStaticLibraries = true;
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
in {
|
|
|
|
|
stdenv = foldl (flip id) super.stdenv staticAdapters;
|
2019-07-21 06:36:44 +01:00
|
|
|
|
gcc49Stdenv = foldl (flip id) super.gcc49Stdenv staticAdapters;
|
|
|
|
|
gcc5Stdenv = foldl (flip id) super.gcc5Stdenv staticAdapters;
|
|
|
|
|
gcc6Stdenv = foldl (flip id) super.gcc6Stdenv staticAdapters;
|
|
|
|
|
gcc7Stdenv = foldl (flip id) super.gcc7Stdenv staticAdapters;
|
|
|
|
|
gcc8Stdenv = foldl (flip id) super.gcc8Stdenv staticAdapters;
|
|
|
|
|
gcc9Stdenv = foldl (flip id) super.gcc9Stdenv staticAdapters;
|
|
|
|
|
clangStdenv = foldl (flip id) super.clangStdenv staticAdapters;
|
|
|
|
|
libcxxStdenv = foldl (flip id) super.libcxxStdenv staticAdapters;
|
2018-12-05 03:17:22 +00:00
|
|
|
|
|
|
|
|
|
haskell = super.haskell // {
|
|
|
|
|
packageOverrides = composeExtensions
|
|
|
|
|
(super.haskell.packageOverrides or (_: _: {}))
|
|
|
|
|
haskellStaticAdapter;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ncurses = super.ncurses.override {
|
|
|
|
|
enableStatic = true;
|
|
|
|
|
};
|
2019-09-10 03:42:03 +01:00
|
|
|
|
libxml2 = super.libxml2.override ({
|
2018-12-05 03:17:22 +00:00
|
|
|
|
enableShared = false;
|
|
|
|
|
enableStatic = true;
|
2019-09-10 03:42:03 +01:00
|
|
|
|
} // optionalAttrs super.stdenv.hostPlatform.isDarwin {
|
|
|
|
|
pythonSupport = false;
|
|
|
|
|
});
|
2018-12-05 03:17:22 +00:00
|
|
|
|
zlib = super.zlib.override {
|
|
|
|
|
static = true;
|
|
|
|
|
shared = false;
|
|
|
|
|
|
|
|
|
|
# Don’t use new stdenv zlib because
|
|
|
|
|
# it doesn’t like the --disable-shared flag
|
|
|
|
|
stdenv = super.stdenv;
|
|
|
|
|
};
|
|
|
|
|
xz = super.xz.override {
|
|
|
|
|
enableStatic = true;
|
|
|
|
|
};
|
|
|
|
|
busybox = super.busybox.override {
|
|
|
|
|
enableStatic = true;
|
|
|
|
|
};
|
|
|
|
|
libiberty = super.libiberty.override {
|
|
|
|
|
staticBuild = true;
|
|
|
|
|
};
|
2019-09-26 09:31:21 +01:00
|
|
|
|
libpfm = super.libpfm.override {
|
|
|
|
|
enableShared = false;
|
|
|
|
|
};
|
2018-12-05 03:17:22 +00:00
|
|
|
|
ipmitool = super.ipmitool.override {
|
|
|
|
|
static = true;
|
|
|
|
|
};
|
|
|
|
|
neon = super.neon.override {
|
|
|
|
|
static = true;
|
|
|
|
|
shared = false;
|
|
|
|
|
};
|
|
|
|
|
gifsicle = super.gifsicle.override {
|
|
|
|
|
static = true;
|
|
|
|
|
};
|
|
|
|
|
bzip2 = super.bzip2.override {
|
|
|
|
|
linkStatic = true;
|
|
|
|
|
};
|
|
|
|
|
optipng = super.optipng.override {
|
|
|
|
|
static = true;
|
|
|
|
|
};
|
2019-05-17 04:42:40 +01:00
|
|
|
|
openblas = super.openblas.override { enableStatic = true; };
|
2019-09-29 11:01:21 +01:00
|
|
|
|
nix = super.nix.override { withAWS = false; };
|
|
|
|
|
# openssl 1.1 doesn't compile
|
|
|
|
|
openssl = super.openssl_1_0_2.override {
|
2018-12-05 03:17:22 +00:00
|
|
|
|
static = true;
|
|
|
|
|
|
|
|
|
|
# Don’t use new stdenv for openssl because it doesn’t like the
|
|
|
|
|
# --disable-shared flag
|
|
|
|
|
stdenv = super.stdenv;
|
|
|
|
|
};
|
|
|
|
|
boost = super.boost.override {
|
|
|
|
|
enableStatic = true;
|
|
|
|
|
enableShared = false;
|
2019-09-29 11:01:21 +01:00
|
|
|
|
|
|
|
|
|
# Don’t use new stdenv for boost because it doesn’t like the
|
|
|
|
|
# --disable-shared flag
|
|
|
|
|
stdenv = super.stdenv;
|
2018-12-05 03:17:22 +00:00
|
|
|
|
};
|
|
|
|
|
gmp = super.gmp.override {
|
|
|
|
|
withStatic = true;
|
|
|
|
|
};
|
|
|
|
|
cdo = super.cdo.override {
|
|
|
|
|
enable_all_static = true;
|
|
|
|
|
};
|
|
|
|
|
gsm = super.gsm.override {
|
|
|
|
|
staticSupport = true;
|
|
|
|
|
};
|
|
|
|
|
parted = super.parted.override {
|
|
|
|
|
enableStatic = true;
|
|
|
|
|
};
|
|
|
|
|
libiconvReal = super.libiconvReal.override {
|
|
|
|
|
enableShared = false;
|
|
|
|
|
enableStatic = true;
|
|
|
|
|
};
|
|
|
|
|
perl = super.perl.override {
|
|
|
|
|
# Don’t use new stdenv zlib because
|
|
|
|
|
# it doesn’t like the --disable-shared flag
|
|
|
|
|
stdenv = super.stdenv;
|
|
|
|
|
};
|
2018-12-13 20:39:04 +00:00
|
|
|
|
lz4 = super.lz4.override {
|
|
|
|
|
enableShared = false;
|
|
|
|
|
enableStatic = true;
|
|
|
|
|
};
|
2018-12-05 03:17:22 +00:00
|
|
|
|
|
|
|
|
|
darwin = super.darwin // {
|
|
|
|
|
libiconv = super.darwin.libiconv.override {
|
|
|
|
|
enableShared = false;
|
|
|
|
|
enableStatic = true;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2019-09-29 11:01:21 +01:00
|
|
|
|
curl = super.curl.override {
|
|
|
|
|
# a very sad story: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=439039
|
|
|
|
|
gssSupport = false;
|
|
|
|
|
};
|
|
|
|
|
|
2019-02-13 05:07:13 +00:00
|
|
|
|
brotli = super.brotli.override {
|
|
|
|
|
staticOnly = true;
|
|
|
|
|
};
|
|
|
|
|
|
2019-01-30 02:01:24 +00:00
|
|
|
|
llvmPackages_8 = super.llvmPackages_8 // {
|
|
|
|
|
libraries = super.llvmPackages_8.libraries // rec {
|
|
|
|
|
libcxxabi = super.llvmPackages_8.libraries.libcxxabi.override {
|
|
|
|
|
enableShared = false;
|
|
|
|
|
};
|
|
|
|
|
libcxx = super.llvmPackages_8.libraries.libcxx.override {
|
|
|
|
|
enableShared = false;
|
|
|
|
|
inherit libcxxabi;
|
|
|
|
|
};
|
2019-07-29 01:04:05 +01:00
|
|
|
|
libunwind = super.llvmPackages_8.libraries.libunwind.override {
|
|
|
|
|
enableShared = false;
|
|
|
|
|
};
|
2019-01-30 02:01:24 +00:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2019-06-03 17:22:40 +01:00
|
|
|
|
python27 = super.python27.override { static = true; };
|
2018-12-05 03:17:22 +00:00
|
|
|
|
}
|