2020-04-03 22:29:31 +01:00
|
|
|
{ lib, fetchurl, fetchFromGitHub, 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
|
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 =
|
2019-06-16 20:59:06 +01:00
|
|
|
{ lib, stdenv, fetchpatch, perl, curl, bzip2, sqlite, openssl ? null, xz
|
2020-03-02 12:04:31 +00:00
|
|
|
, bash, coreutils, gzip, gnutar
|
2019-10-22 23:20:55 +01:00
|
|
|
, pkgconfig, boehmgc, perlPackages, libsodium, brotli, boost, editline, nlohmann_json
|
2020-10-21 11:52:48 +01:00
|
|
|
, autoreconfHook, autoconf-archive, bison, flex
|
2020-06-22 10:54:54 +01:00
|
|
|
, jq, libarchive
|
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
|
2019-09-29 15:32:56 +01:00
|
|
|
, withAWS ? !enableStatic && (stdenv.isLinux || stdenv.isDarwin), aws-sdk-cpp
|
|
|
|
, enableStatic ? false
|
2020-06-22 10:54:54 +01:00
|
|
|
, name, suffix ? "", src
|
2019-03-10 17:30:54 +00:00
|
|
|
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
sh = busybox-sandbox-shell;
|
|
|
|
nix = stdenv.mkDerivation rec {
|
2018-09-25 13:46:36 +01:00
|
|
|
inherit name src;
|
|
|
|
version = lib.getVersion name;
|
|
|
|
|
2020-11-02 21:02:59 +00:00
|
|
|
is24 = lib.versionAtLeast version "2.4pre";
|
|
|
|
isExactly24 = lib.versionAtLeast version "2.4" && lib.versionOlder version "2.4";
|
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 =
|
|
|
|
[ pkgconfig ]
|
2020-11-02 21:02:59 +00:00
|
|
|
++ lib.optionals is24
|
2020-10-21 11:52:48 +01:00
|
|
|
[ autoreconfHook
|
|
|
|
autoconf-archive
|
|
|
|
bison flex
|
|
|
|
lowdown mdbook
|
|
|
|
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
|
|
|
|
]
|
2018-09-25 13:46:36 +01:00
|
|
|
++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium
|
2020-11-02 21:02:59 +00:00
|
|
|
++ lib.optionals is24 [ libarchive gmock ]
|
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: {
|
|
|
|
patches = args.patches or [] ++ [(fetchpatch {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://github.com/edolstra/aws-sdk-cpp/commit/7d58e303159b2fb343af9a1ec4512238efa147c7.patch";
|
2018-09-25 13:46:36 +01:00
|
|
|
sha256 = "103phn6kyvs1yc7fibyin3lgxz699qakhw671kl207484im55id1";
|
|
|
|
})];
|
|
|
|
}));
|
|
|
|
|
|
|
|
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-11-02 21:02:59 +00:00
|
|
|
# For Nix 2.4, patch around an issue where the Nix configure step pulls in the
|
2020-03-02 12:04:31 +00:00
|
|
|
# build system's bash and other utilities when cross-compiling
|
2020-11-02 21:02:59 +00:00
|
|
|
lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform && isExactly24) ''
|
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
|
|
|
|
) ''--with-system=${stdenv.hostPlatform.nix.system}''
|
|
|
|
# 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/";
|
2018-09-25 13:46:36 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2019-09-18 17:48:25 +01:00
|
|
|
platforms = stdenv.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 =
|
2020-10-21 11:52:48 +01:00
|
|
|
[ perl pkgconfig 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-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}";
|
2020-12-01 19:39:24 +00:00
|
|
|
suffix = "pre20201201_5a6ddb3";
|
2020-04-03 22:29:31 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NixOS";
|
|
|
|
repo = "nix";
|
2020-12-01 19:39:24 +00:00
|
|
|
rev = "5a6ddb3de14a1684af6c793d663764d093fa7846";
|
|
|
|
sha256 = "0qhd3nxvqzszzsfvh89xhd239ycqb0kq2n0bzh9br78pcb60vj3g";
|
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
|
|
|
}
|