2020-12-26 10:53:05 +00:00
|
|
|
{ lib, fetchurl, fetchFromGitHub, fetchpatch, callPackage
|
2004-03-31 11:19:01 +01:00
|
|
|
, storeDir ? "/nix/store"
|
|
|
|
, stateDir ? "/nix/var"
|
2017-05-03 14:04:52 +01:00
|
|
|
, confDir ? "/etc"
|
2020-01-04 21:35:53 +00:00
|
|
|
, boehmgc
|
2021-01-22 14:50:16 +00:00
|
|
|
, Security
|
2004-03-31 11:19:01 +01:00
|
|
|
}:
|
2004-02-16 16:54:01 +00:00
|
|
|
|
2015-07-30 11:01:40 +01:00
|
|
|
let
|
2010-08-17 16:21:42 +01:00
|
|
|
|
2019-03-10 17:30:54 +00:00
|
|
|
common =
|
2020-12-26 10:50:49 +00:00
|
|
|
{ lib, stdenv, perl, curl, bzip2, sqlite, openssl ? null, xz
|
2020-03-02 12:04:31 +00:00
|
|
|
, bash, coreutils, gzip, gnutar
|
2021-01-17 09:17:16 +00:00
|
|
|
, pkg-config, boehmgc, perlPackages, libsodium, brotli, boost, editline, nlohmann_json
|
2020-10-21 11:52:48 +01:00
|
|
|
, autoreconfHook, autoconf-archive, bison, flex
|
2021-03-01 23:10:19 +00:00
|
|
|
, jq, libarchive, libcpuid
|
2020-10-21 11:52:48 +01:00
|
|
|
, lowdown, mdbook
|
2020-05-12 13:44:11 +01:00
|
|
|
# Used by tests
|
|
|
|
, gmock
|
2019-03-10 17:30:54 +00:00
|
|
|
, busybox-sandbox-shell
|
|
|
|
, storeDir
|
|
|
|
, stateDir
|
|
|
|
, confDir
|
|
|
|
, withLibseccomp ? lib.any (lib.meta.platformMatch stdenv.hostPlatform) libseccomp.meta.platforms, libseccomp
|
2021-03-05 02:22:23 +00:00
|
|
|
, withAWS ? !enableStatic && (stdenv.isLinux || stdenv.isDarwin), aws-sdk-cpp
|
2020-12-20 06:11:26 +00:00
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
2020-12-26 10:53:05 +00:00
|
|
|
, name, suffix ? "", src
|
|
|
|
, patches ? [ ]
|
2019-03-10 17:30:54 +00:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
sh = busybox-sandbox-shell;
|
|
|
|
nix = stdenv.mkDerivation rec {
|
2020-12-24 13:01:24 +00:00
|
|
|
inherit name src patches;
|
2018-09-25 13:46:36 +01:00
|
|
|
version = lib.getVersion name;
|
|
|
|
|
2020-11-02 21:02:59 +00:00
|
|
|
is24 = lib.versionAtLeast version "2.4pre";
|
2018-09-25 13:46:36 +01:00
|
|
|
|
2020-02-11 15:33:18 +00:00
|
|
|
VERSION_SUFFIX = suffix;
|
2018-09-25 13:46:36 +01:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" "man" "doc" ];
|
|
|
|
|
|
|
|
nativeBuildInputs =
|
2021-01-17 09:17:16 +00:00
|
|
|
[ pkg-config ]
|
2020-11-02 21:02:59 +00:00
|
|
|
++ lib.optionals is24
|
2020-10-21 11:52:48 +01:00
|
|
|
[ autoreconfHook
|
|
|
|
autoconf-archive
|
|
|
|
bison flex
|
2020-09-04 03:47:42 +01:00
|
|
|
(lib.getBin lowdown) mdbook
|
2020-10-21 11:52:48 +01:00
|
|
|
jq
|
|
|
|
];
|
2018-09-25 13:46:36 +01:00
|
|
|
|
2020-04-03 22:04:04 +01:00
|
|
|
buildInputs =
|
|
|
|
[ curl openssl sqlite xz bzip2 nlohmann_json
|
|
|
|
brotli boost editline
|
|
|
|
]
|
2021-01-22 14:50:16 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ Security ]
|
2018-09-25 13:46:36 +01:00
|
|
|
++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium
|
2021-03-12 09:41:49 +00:00
|
|
|
++ lib.optionals is24 [ libarchive gmock lowdown ]
|
2021-03-12 12:22:37 +00:00
|
|
|
++ lib.optional (is24 && stdenv.isx86_64) libcpuid
|
2018-09-25 13:46:36 +01:00
|
|
|
++ lib.optional withLibseccomp libseccomp
|
2020-04-03 22:04:04 +01:00
|
|
|
++ lib.optional withAWS
|
2018-09-25 13:46:36 +01:00
|
|
|
((aws-sdk-cpp.override {
|
|
|
|
apis = ["s3" "transfer"];
|
|
|
|
customMemoryManagement = false;
|
|
|
|
}).overrideDerivation (args: {
|
2020-12-26 10:50:49 +00:00
|
|
|
patches = args.patches or [] ++ [
|
|
|
|
./aws-sdk-cpp-TransferManager-ContentEncoding.patch
|
|
|
|
];
|
2018-09-25 13:46:36 +01:00
|
|
|
}));
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ boehmgc ];
|
|
|
|
|
|
|
|
# Seems to be required when using std::atomic with 64-bit types
|
2019-09-29 15:32:56 +01:00
|
|
|
NIX_LDFLAGS =
|
|
|
|
# need to list libraries individually until
|
|
|
|
# https://github.com/NixOS/nix/commit/3e85c57a6cbf46d5f0fe8a89b368a43abd26daba
|
|
|
|
# is in a release
|
|
|
|
lib.optionalString enableStatic "-lssl -lbrotlicommon -lssh2 -lz -lnghttp2 -lcrypto"
|
|
|
|
|
|
|
|
# need to detect it here until
|
|
|
|
# https://github.com/NixOS/nix/commits/74b4737d8f0e1922ef5314a158271acf81cd79f8
|
|
|
|
# is in a release
|
|
|
|
+ lib.optionalString (stdenv.hostPlatform.system == "armv5tel-linux" || stdenv.hostPlatform.system == "armv6l-linux") "-latomic";
|
2018-09-25 13:46:36 +01:00
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
# Copy libboost_context so we don't get all of Boost in our closure.
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/45462
|
2019-09-29 15:32:56 +01:00
|
|
|
lib.optionalString (!enableStatic) ''
|
2020-03-02 12:07:42 +00:00
|
|
|
mkdir -p $out/lib
|
|
|
|
cp -pd ${boost}/lib/{libboost_context*,libboost_thread*,libboost_system*} $out/lib
|
|
|
|
rm -f $out/lib/*.a
|
|
|
|
${lib.optionalString stdenv.isLinux ''
|
|
|
|
chmod u+w $out/lib/*.so.*
|
|
|
|
patchelf --set-rpath $out/lib:${stdenv.cc.cc.lib}/lib $out/lib/libboost_thread.so.*
|
|
|
|
''}
|
|
|
|
'' +
|
2020-12-31 18:48:42 +00:00
|
|
|
# On all versions before c9f51e87057652db0013289a95deffba495b35e7,
|
|
|
|
# released with 2.3.8, we need to patch around an issue where the Nix
|
|
|
|
# configure step pulls in the build system's bash and other utilities
|
|
|
|
# when cross-compiling.
|
|
|
|
lib.optionalString (
|
|
|
|
stdenv.buildPlatform != stdenv.hostPlatform &&
|
2021-01-02 10:09:57 +00:00
|
|
|
(lib.versionOlder "2.3.8" version && !is24)
|
2020-12-31 18:48:42 +00:00
|
|
|
# The additional is24 condition is required as versionOlder doesn't understand nixUnstable version strings
|
|
|
|
) ''
|
2020-03-02 12:04:31 +00:00
|
|
|
mkdir tmp/
|
|
|
|
substitute corepkgs/config.nix.in tmp/config.nix.in \
|
|
|
|
--subst-var-by bash ${bash}/bin/bash \
|
|
|
|
--subst-var-by coreutils ${coreutils}/bin \
|
|
|
|
--subst-var-by bzip2 ${bzip2}/bin/bzip2 \
|
|
|
|
--subst-var-by gzip ${gzip}/bin/gzip \
|
|
|
|
--subst-var-by xz ${xz}/bin/xz \
|
|
|
|
--subst-var-by tar ${gnutar}/bin/tar \
|
|
|
|
--subst-var-by tr ${coreutils}/bin/tr
|
|
|
|
mv tmp/config.nix.in corepkgs/config.nix.in
|
|
|
|
'';
|
2018-09-25 13:46:36 +01:00
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--with-store-dir=${storeDir}"
|
|
|
|
"--localstatedir=${stateDir}"
|
|
|
|
"--sysconfdir=${confDir}"
|
|
|
|
"--disable-init-state"
|
|
|
|
"--enable-gc"
|
|
|
|
]
|
2020-04-03 22:04:04 +01:00
|
|
|
++ lib.optionals stdenv.isLinux [
|
2018-09-25 13:46:36 +01:00
|
|
|
"--with-sandbox-shell=${sh}/bin/busybox"
|
|
|
|
]
|
|
|
|
++ lib.optional (
|
|
|
|
stdenv.hostPlatform != stdenv.buildPlatform && stdenv.hostPlatform ? nix && stdenv.hostPlatform.nix ? system
|
2021-01-24 09:19:10 +00:00
|
|
|
) "--with-system=${stdenv.hostPlatform.nix.system}"
|
2018-09-25 13:46:36 +01:00
|
|
|
# RISC-V support in progress https://github.com/seccomp/libseccomp/pull/50
|
|
|
|
++ lib.optional (!withLibseccomp) "--disable-seccomp-sandboxing";
|
|
|
|
|
2020-07-06 06:46:10 +01:00
|
|
|
makeFlags = [ "profiledir=$(out)/etc/profile.d" ]
|
|
|
|
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "PRECOMPILE_HEADERS=0";
|
2018-09-25 13:46:36 +01:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
installFlags = [ "sysconfdir=$(out)/etc" ];
|
2018-09-25 13:46:36 +01:00
|
|
|
|
|
|
|
doInstallCheck = true; # not cross
|
|
|
|
|
|
|
|
# socket path becomes too long otherwise
|
|
|
|
preInstallCheck = lib.optional stdenv.isDarwin ''
|
|
|
|
export TMPDIR=$NIX_BUILD_TOP
|
2018-08-22 12:21:05 +01:00
|
|
|
'';
|
|
|
|
|
2018-09-25 13:46:36 +01:00
|
|
|
separateDebugInfo = stdenv.isLinux;
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Powerful package manager that makes package management reliable and reproducible";
|
|
|
|
longDescription = ''
|
|
|
|
Nix is a powerful package manager for Linux and other Unix systems that
|
|
|
|
makes package management reliable and reproducible. It provides atomic
|
|
|
|
upgrades and rollbacks, side-by-side installation of multiple versions of
|
|
|
|
a package, multi-user package management and easy setup of build
|
|
|
|
environments.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://nixos.org/";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.lgpl2Plus;
|
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
|
|
|
platforms = lib.platforms.unix;
|
2018-09-25 13:46:36 +01:00
|
|
|
outputsToInstall = [ "out" "man" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
2020-04-03 22:04:04 +01:00
|
|
|
perl-bindings = stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "nix-perl";
|
|
|
|
inherit version;
|
2018-09-25 13:46:36 +01:00
|
|
|
|
|
|
|
inherit src;
|
|
|
|
|
|
|
|
postUnpack = "sourceRoot=$sourceRoot/perl";
|
|
|
|
|
|
|
|
# This is not cross-compile safe, don't have time to fix right now
|
|
|
|
# but noting for future travellers.
|
|
|
|
nativeBuildInputs =
|
2021-01-17 09:17:16 +00:00
|
|
|
[ perl pkg-config curl nix libsodium boost autoreconfHook autoconf-archive nlohmann_json ];
|
2018-09-25 13:46:36 +01:00
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--with-dbi=${perlPackages.DBI}/${perl.libPrefix}"
|
|
|
|
"--with-dbd-sqlite=${perlPackages.DBDSQLite}/${perl.libPrefix}"
|
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = "export NIX_STATE_DIR=$TMPDIR";
|
|
|
|
|
|
|
|
preBuild = "unset NIX_INDENT_MAKE";
|
|
|
|
};
|
|
|
|
};
|
2015-07-30 11:01:40 +01:00
|
|
|
};
|
2018-09-25 13:46:36 +01:00
|
|
|
in nix;
|
2009-11-05 23:47:53 +00:00
|
|
|
|
2015-07-30 11:01:40 +01:00
|
|
|
in rec {
|
|
|
|
|
2018-02-22 15:40:02 +00:00
|
|
|
nix = nixStable;
|
2016-02-12 15:10:18 +00:00
|
|
|
|
2019-04-30 02:30:56 +01:00
|
|
|
nixStable = callPackage common (rec {
|
2020-12-18 11:33:49 +00:00
|
|
|
name = "nix-2.3.10";
|
2018-02-22 15:40:02 +00:00
|
|
|
src = fetchurl {
|
2020-04-18 21:51:19 +01:00
|
|
|
url = "https://nixos.org/releases/nix/${name}/${name}.tar.xz";
|
2020-12-18 11:33:49 +00:00
|
|
|
sha256 = "a8a85e55de43d017abbf13036edfb58674ca136691582f17080c1cd12787b7ab";
|
2016-02-12 15:10:18 +00:00
|
|
|
};
|
2019-03-10 17:30:54 +00:00
|
|
|
|
2020-12-26 10:53:05 +00:00
|
|
|
patches = [(
|
|
|
|
fetchpatch {
|
|
|
|
url = "https://github.com/NixOS/nix/pull/4316.patch";
|
|
|
|
sha256 = "0bqlm4n9sac9prgr9xlfng92arisp1hiqvc9pfh4fibsppkgdfc5";
|
|
|
|
}
|
|
|
|
)];
|
|
|
|
|
2020-01-04 21:35:53 +00:00
|
|
|
inherit storeDir stateDir confDir boehmgc;
|
2019-04-30 02:30:56 +01:00
|
|
|
});
|
2016-02-12 15:10:18 +00:00
|
|
|
|
2019-03-10 17:30:54 +00:00
|
|
|
nixUnstable = lib.lowPrio (callPackage common rec {
|
2020-11-02 21:02:59 +00:00
|
|
|
name = "nix-2.4${suffix}";
|
2021-03-01 23:10:19 +00:00
|
|
|
suffix = "pre20210308_1c0e3e4";
|
2020-04-03 22:29:31 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NixOS";
|
|
|
|
repo = "nix";
|
2021-03-01 23:10:19 +00:00
|
|
|
rev = "1c0e3e453d41b869e4ac7e25dc1c00c349a7c411";
|
|
|
|
sha256 = "17killwp42d25f17yq2jida64j7d0ipz6zish78iqi450yrd9wrd";
|
2016-02-12 15:10:18 +00:00
|
|
|
};
|
2019-03-10 17:30:54 +00:00
|
|
|
|
2020-01-04 21:35:53 +00:00
|
|
|
inherit storeDir stateDir confDir boehmgc;
|
2018-09-25 13:46:36 +01:00
|
|
|
});
|
2015-07-30 11:01:40 +01:00
|
|
|
|
2020-07-20 15:04:37 +01:00
|
|
|
nixFlakes = nixUnstable;
|
2019-06-12 17:23:19 +01:00
|
|
|
|
2004-02-16 15:40:55 +00:00
|
|
|
}
|