2018-01-10 20:16:49 +00:00
|
|
|
{ nix ? builtins.fetchGit ./.
|
2020-02-19 11:32:45 +00:00
|
|
|
, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/nixos-20.03-small.tar.gz
|
2010-03-10 13:07:37 +00:00
|
|
|
, officialRelease ? false
|
2017-06-19 18:21:06 +00:00
|
|
|
, systems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
|
2010-03-10 13:07:37 +00:00
|
|
|
}:
|
2009-03-09 15:05:08 +00:00
|
|
|
|
2008-12-04 15:25:28 +00:00
|
|
|
let
|
2008-11-26 01:13:29 +00:00
|
|
|
|
2018-01-18 15:37:39 +00:00
|
|
|
pkgs = import nixpkgs { system = builtins.currentSystem or "x86_64-linux"; };
|
2013-03-15 12:18:49 +00:00
|
|
|
|
2008-12-04 15:25:28 +00:00
|
|
|
jobs = rec {
|
2008-11-26 01:13:29 +00:00
|
|
|
|
2019-07-04 23:01:18 +00:00
|
|
|
# Create a "vendor" directory that contains the crates listed in
|
|
|
|
# Cargo.lock, and include it in the Nix tarball. This allows Nix
|
|
|
|
# to be built without network access.
|
|
|
|
vendoredCrates =
|
|
|
|
let
|
|
|
|
lockFile = builtins.fromTOML (builtins.readFile nix-rust/Cargo.lock);
|
|
|
|
|
|
|
|
files = map (pkg: import <nix/fetchurl.nix> {
|
|
|
|
url = "https://crates.io/api/v1/crates/${pkg.name}/${pkg.version}/download";
|
|
|
|
sha256 = lockFile.metadata."checksum ${pkg.name} ${pkg.version} (registry+https://github.com/rust-lang/crates.io-index)";
|
|
|
|
}) (builtins.filter (pkg: pkg.source or "" == "registry+https://github.com/rust-lang/crates.io-index") lockFile.package);
|
|
|
|
|
|
|
|
in pkgs.runCommand "cargo-vendor-dir" {}
|
|
|
|
''
|
|
|
|
mkdir -p $out/vendor
|
|
|
|
|
|
|
|
cat > $out/vendor/config <<EOF
|
|
|
|
[source.crates-io]
|
|
|
|
replace-with = "vendored-sources"
|
|
|
|
|
|
|
|
[source.vendored-sources]
|
|
|
|
directory = "vendor"
|
|
|
|
EOF
|
|
|
|
|
|
|
|
${toString (builtins.map (file: ''
|
|
|
|
mkdir $out/vendor/tmp
|
|
|
|
tar xvf ${file} -C $out/vendor/tmp
|
|
|
|
dir=$(echo $out/vendor/tmp/*)
|
|
|
|
|
|
|
|
# Add just enough metadata to keep Cargo happy.
|
|
|
|
printf '{"files":{},"package":"${file.outputHash}"}' > "$dir/.cargo-checksum.json"
|
|
|
|
|
2019-07-04 23:19:30 +00:00
|
|
|
# Clean up some cruft from the winapi crates. FIXME: find
|
|
|
|
# a way to remove winapi* from our dependencies.
|
|
|
|
if [[ $dir =~ /winapi ]]; then
|
|
|
|
find $dir -name "*.a" -print0 | xargs -0 rm -f --
|
|
|
|
fi
|
|
|
|
|
2019-07-04 23:01:18 +00:00
|
|
|
mv "$dir" $out/vendor/
|
2019-07-04 23:19:30 +00:00
|
|
|
|
|
|
|
rm -rf $out/vendor/tmp
|
2019-07-04 23:01:18 +00:00
|
|
|
'') files)}
|
|
|
|
'';
|
|
|
|
|
2008-11-26 01:13:29 +00:00
|
|
|
|
2008-12-04 15:25:28 +00:00
|
|
|
tarball =
|
2013-03-15 12:18:49 +00:00
|
|
|
with pkgs;
|
2008-11-26 01:13:29 +00:00
|
|
|
|
2018-03-14 18:11:13 +00:00
|
|
|
with import ./release-common.nix { inherit pkgs; };
|
|
|
|
|
2009-03-26 14:12:42 +00:00
|
|
|
releaseTools.sourceTarball {
|
2008-12-04 15:25:28 +00:00
|
|
|
name = "nix-tarball";
|
2019-03-14 14:55:30 +00:00
|
|
|
version = builtins.readFile ./.version;
|
2012-02-08 11:31:14 +00:00
|
|
|
versionSuffix = if officialRelease then "" else "pre${toString nix.revCount}_${nix.shortRev}";
|
2017-01-27 15:13:22 +00:00
|
|
|
src = nix;
|
2008-12-04 15:25:28 +00:00
|
|
|
inherit officialRelease;
|
2008-11-26 01:13:29 +00:00
|
|
|
|
2020-02-15 20:48:28 +00:00
|
|
|
buildInputs = tarballDeps ++ buildDeps ++ propagatedDeps;
|
2008-12-04 15:25:28 +00:00
|
|
|
|
2012-03-18 21:10:59 +00:00
|
|
|
postUnpack = ''
|
2018-04-07 07:15:41 +00:00
|
|
|
(cd $sourceRoot && find . -type f) | cut -c3- > $sourceRoot/.dist-files
|
|
|
|
cat $sourceRoot/.dist-files
|
2012-03-18 21:10:59 +00:00
|
|
|
'';
|
|
|
|
|
2008-12-04 15:25:28 +00:00
|
|
|
preConfigure = ''
|
2016-08-12 13:44:01 +00:00
|
|
|
(cd perl ; autoreconf --install --force --verbose)
|
2009-08-03 12:24:20 +00:00
|
|
|
# TeX needs a writable font cache.
|
|
|
|
export VARTEXFONTS=$TMPDIR/texfonts
|
2008-12-04 15:25:28 +00:00
|
|
|
'';
|
2009-05-07 12:57:04 +00:00
|
|
|
|
2012-12-06 15:55:57 +00:00
|
|
|
distPhase =
|
|
|
|
''
|
2019-07-04 23:01:18 +00:00
|
|
|
cp -prd ${vendoredCrates}/vendor/ nix-rust/vendor/
|
|
|
|
|
2012-12-06 15:55:57 +00:00
|
|
|
runHook preDist
|
2014-02-01 14:18:48 +00:00
|
|
|
make dist
|
2012-12-06 15:55:57 +00:00
|
|
|
mkdir -p $out/tarballs
|
|
|
|
cp *.tar.* $out/tarballs
|
|
|
|
'';
|
2012-12-05 09:23:53 +00:00
|
|
|
|
2009-05-07 12:57:04 +00:00
|
|
|
preDist = ''
|
2014-02-01 14:18:48 +00:00
|
|
|
make install docdir=$out/share/doc/nix makefiles=doc/manual/local.mk
|
2009-05-07 13:22:26 +00:00
|
|
|
echo "doc manual $out/share/doc/nix/manual" >> $out/nix-support/hydra-build-products
|
2009-05-07 12:57:04 +00:00
|
|
|
'';
|
2008-12-04 15:25:28 +00:00
|
|
|
};
|
2008-11-26 01:13:29 +00:00
|
|
|
|
2008-12-04 15:25:28 +00:00
|
|
|
|
2013-03-15 12:18:49 +00:00
|
|
|
build = pkgs.lib.genAttrs systems (system:
|
2008-12-04 15:25:28 +00:00
|
|
|
|
2018-03-19 10:57:34 +00:00
|
|
|
let pkgs = import nixpkgs { inherit system; }; in
|
|
|
|
|
|
|
|
with pkgs;
|
2008-12-04 15:25:28 +00:00
|
|
|
|
2017-05-15 15:30:33 +00:00
|
|
|
with import ./release-common.nix { inherit pkgs; };
|
|
|
|
|
2008-12-04 15:25:28 +00:00
|
|
|
releaseTools.nixBuild {
|
2009-03-06 17:00:58 +00:00
|
|
|
name = "nix";
|
2008-12-04 15:25:28 +00:00
|
|
|
src = tarball;
|
|
|
|
|
2020-02-19 11:26:59 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2018-03-14 18:11:13 +00:00
|
|
|
buildInputs = buildDeps;
|
2008-12-04 15:25:28 +00:00
|
|
|
|
2020-02-15 20:48:28 +00:00
|
|
|
propagatedBuildInputs = propagatedDeps;
|
|
|
|
|
2018-08-30 14:03:06 +00:00
|
|
|
preConfigure =
|
|
|
|
# Copy libboost_context so we don't get all of Boost in our closure.
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/45462
|
|
|
|
''
|
|
|
|
mkdir -p $out/lib
|
2019-08-27 20:38:48 +00:00
|
|
|
cp -pd ${boost}/lib/{libboost_context*,libboost_thread*,libboost_system*} $out/lib
|
|
|
|
rm -f $out/lib/*.a
|
|
|
|
${lib.optionalString stdenv.isLinux ''
|
2019-08-28 20:04:16 +00:00
|
|
|
chmod u+w $out/lib/*.so.*
|
2019-08-27 20:38:48 +00:00
|
|
|
patchelf --set-rpath $out/lib:${stdenv.cc.cc.lib}/lib $out/lib/libboost_thread.so.*
|
|
|
|
''}
|
2018-08-30 14:03:06 +00:00
|
|
|
'';
|
|
|
|
|
2017-05-15 15:30:33 +00:00
|
|
|
configureFlags = configureFlags ++
|
|
|
|
[ "--sysconfdir=/etc" ];
|
2012-03-19 00:20:02 +00:00
|
|
|
|
2012-05-22 22:36:54 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-01-02 22:52:15 +00:00
|
|
|
makeFlags = "profiledir=$(out)/etc/profile.d";
|
|
|
|
|
2013-01-02 21:12:19 +00:00
|
|
|
installFlags = "sysconfdir=$(out)/etc";
|
|
|
|
|
2016-01-07 15:05:02 +00:00
|
|
|
doInstallCheck = true;
|
2014-02-01 14:37:50 +00:00
|
|
|
installCheckFlags = "sysconfdir=$(out)/etc";
|
2020-02-15 20:30:26 +00:00
|
|
|
|
|
|
|
separateDebugInfo = true;
|
2013-03-15 12:18:49 +00:00
|
|
|
});
|
|
|
|
|
2008-12-04 15:25:28 +00:00
|
|
|
|
2017-03-31 13:54:15 +00:00
|
|
|
perlBindings = pkgs.lib.genAttrs systems (system:
|
2016-08-12 13:44:01 +00:00
|
|
|
|
2017-12-22 10:33:34 +00:00
|
|
|
let pkgs = import nixpkgs { inherit system; }; in with pkgs;
|
2016-08-12 13:44:01 +00:00
|
|
|
|
|
|
|
releaseTools.nixBuild {
|
|
|
|
name = "nix-perl";
|
|
|
|
src = tarball;
|
|
|
|
|
|
|
|
buildInputs =
|
2018-03-22 13:15:46 +00:00
|
|
|
[ jobs.build.${system} curl bzip2 xz pkgconfig pkgs.perl boost ]
|
2017-05-03 09:30:02 +00:00
|
|
|
++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium;
|
2016-08-12 13:44:01 +00:00
|
|
|
|
2017-03-30 20:51:50 +00:00
|
|
|
configureFlags = ''
|
2016-08-12 13:44:01 +00:00
|
|
|
--with-dbi=${perlPackages.DBI}/${pkgs.perl.libPrefix}
|
|
|
|
--with-dbd-sqlite=${perlPackages.DBDSQLite}/${pkgs.perl.libPrefix}
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-03-30 20:51:50 +00:00
|
|
|
postUnpack = "sourceRoot=$sourceRoot/perl";
|
2016-08-12 13:44:01 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2013-03-15 12:18:49 +00:00
|
|
|
binaryTarball = pkgs.lib.genAttrs systems (system:
|
2012-05-22 22:36:54 +00:00
|
|
|
|
2017-12-22 10:33:34 +00:00
|
|
|
with import nixpkgs { inherit system; };
|
2012-05-22 22:36:54 +00:00
|
|
|
|
|
|
|
let
|
2013-03-15 12:18:49 +00:00
|
|
|
toplevel = builtins.getAttr system jobs.build;
|
2012-05-22 22:36:54 +00:00
|
|
|
version = toplevel.src.version;
|
2018-03-26 12:14:53 +00:00
|
|
|
installerClosureInfo = closureInfo { rootPaths = [ toplevel cacert ]; };
|
2012-05-22 22:36:54 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
runCommand "nix-binary-tarball-${version}"
|
2019-11-05 15:00:30 +00:00
|
|
|
{ #nativeBuildInputs = lib.optional (system != "aarch64-linux") shellcheck;
|
2012-05-22 22:36:54 +00:00
|
|
|
meta.description = "Distribution-independent Nix bootstrap binaries for ${system}";
|
|
|
|
}
|
|
|
|
''
|
2018-03-26 12:14:53 +00:00
|
|
|
cp ${installerClosureInfo}/registration $TMPDIR/reginfo
|
2012-05-22 22:36:54 +00:00
|
|
|
substitute ${./scripts/install-nix-from-closure.sh} $TMPDIR/install \
|
2014-12-10 15:05:08 +00:00
|
|
|
--subst-var-by nix ${toplevel} \
|
|
|
|
--subst-var-by cacert ${cacert}
|
2018-03-28 13:16:13 +00:00
|
|
|
|
|
|
|
substitute ${./scripts/install-darwin-multi-user.sh} $TMPDIR/install-darwin-multi-user.sh \
|
|
|
|
--subst-var-by nix ${toplevel} \
|
|
|
|
--subst-var-by cacert ${cacert}
|
|
|
|
substitute ${./scripts/install-systemd-multi-user.sh} $TMPDIR/install-systemd-multi-user.sh \
|
|
|
|
--subst-var-by nix ${toplevel} \
|
|
|
|
--subst-var-by cacert ${cacert}
|
|
|
|
substitute ${./scripts/install-multi-user.sh} $TMPDIR/install-multi-user \
|
2017-07-09 17:07:28 +00:00
|
|
|
--subst-var-by nix ${toplevel} \
|
|
|
|
--subst-var-by cacert ${cacert}
|
2017-07-09 16:38:32 +00:00
|
|
|
|
2018-02-20 11:33:32 +00:00
|
|
|
if type -p shellcheck; then
|
2018-03-28 13:16:13 +00:00
|
|
|
# SC1090: Don't worry about not being able to find
|
|
|
|
# $nix/etc/profile.d/nix.sh
|
|
|
|
shellcheck --exclude SC1090 $TMPDIR/install
|
|
|
|
shellcheck $TMPDIR/install-darwin-multi-user.sh
|
|
|
|
shellcheck $TMPDIR/install-systemd-multi-user.sh
|
|
|
|
|
|
|
|
# SC1091: Don't panic about not being able to source
|
|
|
|
# /etc/profile
|
|
|
|
# SC2002: Ignore "useless cat" "error", when loading
|
|
|
|
# .reginfo, as the cat is a much cleaner
|
|
|
|
# implementation, even though it is "useless"
|
|
|
|
# SC2116: Allow ROOT_HOME=$(echo ~root) for resolving
|
|
|
|
# root's home directory
|
|
|
|
shellcheck --external-sources \
|
|
|
|
--exclude SC1091,SC2002,SC2116 $TMPDIR/install-multi-user
|
2018-02-20 11:33:32 +00:00
|
|
|
fi
|
2017-07-09 16:38:32 +00:00
|
|
|
|
2012-05-22 22:36:54 +00:00
|
|
|
chmod +x $TMPDIR/install
|
2018-03-28 13:16:13 +00:00
|
|
|
chmod +x $TMPDIR/install-darwin-multi-user.sh
|
|
|
|
chmod +x $TMPDIR/install-systemd-multi-user.sh
|
|
|
|
chmod +x $TMPDIR/install-multi-user
|
2014-02-10 15:35:59 +00:00
|
|
|
dir=nix-${version}-${system}
|
2019-08-27 20:18:34 +00:00
|
|
|
fn=$out/$dir.tar.xz
|
2012-05-22 22:36:54 +00:00
|
|
|
mkdir -p $out/nix-support
|
|
|
|
echo "file binary-dist $fn" >> $out/nix-support/hydra-build-products
|
2019-08-27 20:18:34 +00:00
|
|
|
tar cvfJ $fn \
|
2014-02-10 15:35:59 +00:00
|
|
|
--owner=0 --group=0 --mode=u+rw,uga+r \
|
|
|
|
--absolute-names \
|
|
|
|
--hard-dereference \
|
|
|
|
--transform "s,$TMPDIR/install,$dir/install," \
|
|
|
|
--transform "s,$TMPDIR/reginfo,$dir/.reginfo," \
|
|
|
|
--transform "s,$NIX_STORE,$dir/store,S" \
|
2018-03-28 13:16:13 +00:00
|
|
|
$TMPDIR/install $TMPDIR/install-darwin-multi-user.sh \
|
|
|
|
$TMPDIR/install-systemd-multi-user.sh \
|
|
|
|
$TMPDIR/install-multi-user $TMPDIR/reginfo \
|
2018-03-26 12:14:53 +00:00
|
|
|
$(cat ${installerClosureInfo}/store-paths)
|
2013-03-15 12:18:49 +00:00
|
|
|
'');
|
2012-05-22 22:36:54 +00:00
|
|
|
|
2009-09-17 17:44:13 +00:00
|
|
|
|
2008-12-04 15:25:28 +00:00
|
|
|
coverage =
|
2018-03-20 13:55:47 +00:00
|
|
|
with pkgs;
|
|
|
|
|
|
|
|
with import ./release-common.nix { inherit pkgs; };
|
2008-12-04 15:25:28 +00:00
|
|
|
|
|
|
|
releaseTools.coverageAnalysis {
|
|
|
|
name = "nix-build";
|
|
|
|
src = tarball;
|
|
|
|
|
2020-01-13 20:44:35 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-02-15 20:48:28 +00:00
|
|
|
buildInputs = buildDeps ++ propagatedDeps;
|
2008-12-04 15:25:28 +00:00
|
|
|
|
2012-03-19 16:05:42 +00:00
|
|
|
dontInstall = false;
|
|
|
|
|
2012-05-12 03:30:47 +00:00
|
|
|
doInstallCheck = true;
|
2012-08-27 15:28:48 +00:00
|
|
|
|
2019-10-22 18:12:23 +00:00
|
|
|
lcovFilter = [ "*/boost/*" "*-tab.*" ];
|
2008-12-04 15:25:28 +00:00
|
|
|
|
|
|
|
# We call `dot', and even though we just use it to
|
|
|
|
# syntax-check generated dot files, it still requires some
|
|
|
|
# fonts. So provide those.
|
|
|
|
FONTCONFIG_FILE = texFunctions.fontsConf;
|
2020-01-13 20:44:35 +00:00
|
|
|
|
|
|
|
# To test building without precompiled headers.
|
|
|
|
makeFlagsArray = [ "PRECOMPILE_HEADERS=0" ];
|
2008-12-04 15:25:28 +00:00
|
|
|
};
|
|
|
|
|
2012-08-27 15:28:48 +00:00
|
|
|
|
2011-10-11 13:06:59 +00:00
|
|
|
# System tests.
|
2014-11-18 13:49:42 +00:00
|
|
|
tests.remoteBuilds = (import ./tests/remote-builds.nix rec {
|
2017-12-22 10:33:34 +00:00
|
|
|
inherit nixpkgs;
|
2013-03-25 20:59:11 +00:00
|
|
|
nix = build.x86_64-linux; system = "x86_64-linux";
|
2014-09-05 09:49:35 +00:00
|
|
|
});
|
2011-10-11 13:58:47 +00:00
|
|
|
|
2014-11-18 13:49:42 +00:00
|
|
|
tests.nix-copy-closure = (import ./tests/nix-copy-closure.nix rec {
|
2017-12-22 10:33:34 +00:00
|
|
|
inherit nixpkgs;
|
2013-03-25 20:59:11 +00:00
|
|
|
nix = build.x86_64-linux; system = "x86_64-linux";
|
2014-09-05 09:49:35 +00:00
|
|
|
});
|
2011-10-11 13:06:59 +00:00
|
|
|
|
2017-12-12 13:31:31 +00:00
|
|
|
tests.setuid = pkgs.lib.genAttrs
|
2018-02-07 13:15:20 +00:00
|
|
|
["i686-linux" "x86_64-linux"]
|
2017-12-12 13:31:31 +00:00
|
|
|
(system:
|
|
|
|
import ./tests/setuid.nix rec {
|
2018-02-07 13:12:15 +00:00
|
|
|
inherit nixpkgs;
|
2017-12-12 13:31:31 +00:00
|
|
|
nix = build.${system}; inherit system;
|
|
|
|
});
|
2017-05-29 12:19:11 +00:00
|
|
|
|
2014-11-18 13:49:42 +00:00
|
|
|
tests.binaryTarball =
|
2017-12-22 10:33:34 +00:00
|
|
|
with import nixpkgs { system = "x86_64-linux"; };
|
2014-11-18 13:49:42 +00:00
|
|
|
vmTools.runInLinuxImage (runCommand "nix-binary-tarball-test"
|
|
|
|
{ diskImage = vmTools.diskImages.ubuntu1204x86_64;
|
|
|
|
}
|
|
|
|
''
|
2018-08-30 19:18:56 +00:00
|
|
|
set -x
|
2014-11-18 13:49:42 +00:00
|
|
|
useradd -m alice
|
|
|
|
su - alice -c 'tar xf ${binaryTarball.x86_64-linux}/*.tar.*'
|
2016-05-31 13:16:21 +00:00
|
|
|
mkdir /dest-nix
|
|
|
|
mount -o bind /dest-nix /nix # Provide a writable /nix.
|
2014-11-18 13:49:42 +00:00
|
|
|
chown alice /nix
|
|
|
|
su - alice -c '_NIX_INSTALLER_TEST=1 ./nix-*/install'
|
|
|
|
su - alice -c 'nix-store --verify'
|
2016-05-31 13:16:21 +00:00
|
|
|
su - alice -c 'PAGER= nix-store -qR ${build.x86_64-linux}'
|
2018-08-30 15:10:28 +00:00
|
|
|
|
|
|
|
# Check whether 'nix upgrade-nix' works.
|
|
|
|
cat > /tmp/paths.nix <<EOF
|
|
|
|
{
|
|
|
|
x86_64-linux = "${build.x86_64-linux}";
|
|
|
|
}
|
|
|
|
EOF
|
2019-11-06 09:35:31 +00:00
|
|
|
su - alice -c 'nix --experimental-features nix-command upgrade-nix -vvv --nix-store-paths-url file:///tmp/paths.nix'
|
2018-08-30 19:18:56 +00:00
|
|
|
(! [ -L /home/alice/.profile-1-link ])
|
2018-08-30 15:10:28 +00:00
|
|
|
su - alice -c 'PAGER= nix-store -qR ${build.x86_64-linux}'
|
|
|
|
|
2014-11-18 17:40:47 +00:00
|
|
|
mkdir -p $out/nix-support
|
|
|
|
touch $out/nix-support/hydra-build-products
|
2016-05-31 13:16:21 +00:00
|
|
|
umount /nix
|
2014-11-18 13:49:42 +00:00
|
|
|
''); # */
|
|
|
|
|
2019-11-06 09:36:06 +00:00
|
|
|
/*
|
2016-01-19 20:10:32 +00:00
|
|
|
tests.evalNixpkgs =
|
2017-12-22 10:33:34 +00:00
|
|
|
import (nixpkgs + "/pkgs/top-level/make-tarball.nix") {
|
2016-01-19 20:10:32 +00:00
|
|
|
inherit nixpkgs;
|
|
|
|
inherit pkgs;
|
|
|
|
nix = build.x86_64-linux;
|
|
|
|
officialRelease = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
tests.evalNixOS =
|
|
|
|
pkgs.runCommand "eval-nixos" { buildInputs = [ build.x86_64-linux ]; }
|
|
|
|
''
|
|
|
|
export NIX_STATE_DIR=$TMPDIR
|
|
|
|
|
2018-04-19 13:28:40 +00:00
|
|
|
nix-instantiate ${nixpkgs}/nixos/release-combined.nix -A tested --dry-run \
|
|
|
|
--arg nixpkgs '{ outPath = ${nixpkgs}; revCount = 123; shortRev = "abcdefgh"; }'
|
2016-01-19 20:10:32 +00:00
|
|
|
|
|
|
|
touch $out
|
|
|
|
'';
|
2019-11-07 09:14:00 +00:00
|
|
|
*/
|
2016-01-19 20:10:32 +00:00
|
|
|
|
2013-10-23 09:52:25 +00:00
|
|
|
|
2018-05-30 15:40:08 +00:00
|
|
|
installerScript =
|
|
|
|
pkgs.runCommand "installer-script"
|
|
|
|
{ buildInputs = [ build.x86_64-linux ];
|
|
|
|
}
|
|
|
|
''
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
|
|
|
|
substitute ${./scripts/install.in} $out/install \
|
|
|
|
${pkgs.lib.concatMapStrings
|
2019-11-07 17:31:16 +00:00
|
|
|
(system: "--replace '@binaryTarball_${system}@' $(nix --experimental-features nix-command hash-file --base16 --type sha256 ${binaryTarball.${system}}/*.tar.xz) ")
|
2018-05-30 15:40:08 +00:00
|
|
|
[ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ]
|
|
|
|
} \
|
|
|
|
--replace '@nixVersion@' ${build.x86_64-linux.src.version}
|
|
|
|
|
|
|
|
echo "file installer $out/install" >> $out/nix-support/hydra-build-products
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
2013-10-23 09:52:25 +00:00
|
|
|
# Aggregate job containing the release-critical jobs.
|
|
|
|
release = pkgs.releaseTools.aggregate {
|
|
|
|
name = "nix-${tarball.version}";
|
|
|
|
meta.description = "Release-critical builds";
|
|
|
|
constituents =
|
|
|
|
[ tarball
|
|
|
|
build.i686-linux
|
2014-10-31 07:58:19 +00:00
|
|
|
build.x86_64-darwin
|
2013-10-23 09:52:25 +00:00
|
|
|
build.x86_64-linux
|
2018-05-30 15:40:08 +00:00
|
|
|
build.aarch64-linux
|
2013-10-23 09:52:25 +00:00
|
|
|
binaryTarball.i686-linux
|
2014-10-31 07:58:19 +00:00
|
|
|
binaryTarball.x86_64-darwin
|
2013-10-23 09:52:25 +00:00
|
|
|
binaryTarball.x86_64-linux
|
2018-05-30 15:40:08 +00:00
|
|
|
binaryTarball.aarch64-linux
|
2014-11-18 13:49:42 +00:00
|
|
|
tests.remoteBuilds
|
|
|
|
tests.nix-copy-closure
|
|
|
|
tests.binaryTarball
|
2019-11-06 09:36:06 +00:00
|
|
|
#tests.evalNixpkgs
|
2019-11-07 09:14:00 +00:00
|
|
|
#tests.evalNixOS
|
2018-05-30 15:40:08 +00:00
|
|
|
installerScript
|
2013-10-23 09:52:25 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2008-12-04 15:25:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
in jobs
|