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
|
2019-04-30 02:30:56 +01:00
|
|
|
, stdenv, llvmPackages_6
|
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-04-03 22:29:31 +01:00
|
|
|
, autoreconfHook, autoconf-archive, bison, flex, libxml2, libxslt, docbook5, docbook_xsl_ns
|
2020-02-11 15:33:18 +00:00
|
|
|
, jq, libarchive, rustc, cargo
|
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
|
|
|
|
, withAWS ? stdenv.isLinux || stdenv.isDarwin, aws-sdk-cpp
|
|
|
|
|
2020-04-03 22:29:31 +01:00
|
|
|
, name, suffix ? "", src, crates ? null
|
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-02-11 15:33:18 +00:00
|
|
|
is24 = lib.versionAtLeast version "2.4pre";
|
2020-03-02 12:04:31 +00:00
|
|
|
isExactly23 = lib.versionAtLeast version "2.3" && 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-04-03 22:29:31 +01:00
|
|
|
++ lib.optionals is24 [ autoreconfHook autoconf-archive bison flex libxml2 libxslt docbook5 docbook_xsl_ns 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-02-11 15:33:18 +00:00
|
|
|
++ lib.optionals is24 [ libarchive rustc cargo ]
|
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 {
|
|
|
|
url = https://github.com/edolstra/aws-sdk-cpp/commit/7d58e303159b2fb343af9a1ec4512238efa147c7.patch;
|
|
|
|
sha256 = "103phn6kyvs1yc7fibyin3lgxz699qakhw671kl207484im55id1";
|
|
|
|
})];
|
|
|
|
}));
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ boehmgc ];
|
|
|
|
|
|
|
|
# Seems to be required when using std::atomic with 64-bit types
|
2019-12-28 05:37:22 +00:00
|
|
|
NIX_LDFLAGS = 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
|
2020-04-03 22:04:04 +01:00
|
|
|
''
|
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-04-03 22:29:31 +01:00
|
|
|
# Unpack the Rust crates.
|
|
|
|
lib.optionalString is24 ''
|
|
|
|
tar xvf ${crates} -C nix-rust/
|
|
|
|
mv nix-rust/nix-vendored-crates* nix-rust/vendor
|
|
|
|
'' +
|
2020-03-02 12:04:31 +00:00
|
|
|
# For Nix-2.3, 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 && isExactly23) ''
|
|
|
|
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";
|
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
makeFlags = [ "profiledir=$(out)/etc/profile.d" ];
|
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.
|
|
|
|
'';
|
|
|
|
homepage = https://nixos.org/;
|
|
|
|
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-04-03 22:29:31 +01:00
|
|
|
[ perl pkgconfig curl nix libsodium boost autoreconfHook autoconf-archive ];
|
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-02-19 00:38:13 +00:00
|
|
|
name = "nix-2.3.3";
|
2018-02-22 15:40:02 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://nixos.org/releases/nix/${name}/${name}.tar.xz";
|
2020-02-19 00:38:13 +00:00
|
|
|
sha256 = "332fffb8dfc33eab854c136ef162a88cec15b701def71fa63714d160831ba224";
|
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
|
|
|
} // stdenv.lib.optionalAttrs stdenv.cc.isClang {
|
2019-04-23 02:16:59 +01:00
|
|
|
stdenv = llvmPackages_6.stdenv;
|
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-02-11 15:33:18 +00:00
|
|
|
name = "nix-2.4${suffix}";
|
2020-04-03 22:29:31 +01:00
|
|
|
suffix = "pre7346_5e7ccdc9";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NixOS";
|
|
|
|
repo = "nix";
|
|
|
|
rev = "5e7ccdc9e3ddd61dc85e20c898001345bfb497a5";
|
|
|
|
sha256 = "10jg0rq92xbigbbri7harn4b75blqaf6rjgq4hhvlnggf2w9iprg";
|
|
|
|
};
|
|
|
|
|
|
|
|
crates = fetchurl {
|
|
|
|
url = https://hydra.nixos.org/build/115942497/download/1/nix-vendored-crates-2.4pre20200403_3473b19.tar.xz;
|
|
|
|
sha256 = "a83785553bb4bc5b28220562153e201ec555a00171466ac08b716f0c97aee45a";
|
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
|
|
|
|
2019-06-12 17:23:19 +01:00
|
|
|
nixFlakes = lib.lowPrio (callPackage common rec {
|
2019-09-13 19:13:14 +01:00
|
|
|
name = "nix-2.4${suffix}";
|
2020-04-03 22:29:31 +01:00
|
|
|
suffix = "pre20200403_3473b19";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NixOS";
|
|
|
|
repo = "nix";
|
|
|
|
rev = "3473b1950a90d596a3baa080fdfdb080f55a5cc0";
|
|
|
|
sha256 = "1bb7a8a5lzmb3pzq80zxd3s9y3qv757q7032s5wvp75la9wgvmvr";
|
|
|
|
};
|
|
|
|
|
|
|
|
crates = fetchurl {
|
|
|
|
url = https://hydra.nixos.org/build/115942497/download/1/nix-vendored-crates-2.4pre20200403_3473b19.tar.xz;
|
|
|
|
sha256 = "a83785553bb4bc5b28220562153e201ec555a00171466ac08b716f0c97aee45a";
|
2019-06-12 17:23:19 +01:00
|
|
|
};
|
|
|
|
|
2020-01-04 21:35:53 +00:00
|
|
|
inherit storeDir stateDir confDir boehmgc;
|
2019-06-12 17:23:19 +01:00
|
|
|
});
|
|
|
|
|
2004-02-16 15:40:55 +00:00
|
|
|
}
|