mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
168fe999e7
Ensure that archive members are added in sorted order with a fixed
mtime. This allows `nix-build --check` to succeed (when building a
tarball of a simple system configuration).
We also remove env-vars which doesn't appear to do much apart from
capture a bunch of store paths we probably don't want.
This is an alternative to
4b78a5b5fb
62 lines
1.4 KiB
Bash
62 lines
1.4 KiB
Bash
source $stdenv/setup
|
|
set -x
|
|
|
|
sources_=($sources)
|
|
targets_=($targets)
|
|
|
|
echo $objects
|
|
objects=($objects)
|
|
symlinks=($symlinks)
|
|
|
|
|
|
# Remove the initial slash from a path, since genisofs likes it that way.
|
|
stripSlash() {
|
|
res="$1"
|
|
if test "${res:0:1}" = /; then res=${res:1}; fi
|
|
}
|
|
|
|
touch pathlist
|
|
|
|
# Add the individual files.
|
|
for ((i = 0; i < ${#targets_[@]}; i++)); do
|
|
stripSlash "${targets_[$i]}"
|
|
mkdir -p "$(dirname "$res")"
|
|
cp -a "${sources_[$i]}" "$res"
|
|
done
|
|
|
|
|
|
# Add the closures of the top-level store objects.
|
|
mkdir -p nix/store
|
|
storePaths=$(perl $pathsFromGraph closure-*)
|
|
for i in $storePaths; do
|
|
cp -a "$i" "${i:1}"
|
|
done
|
|
|
|
|
|
# TODO tar ruxo
|
|
# Also include a manifest of the closures in a format suitable for
|
|
# nix-store --load-db.
|
|
printRegistration=1 perl $pathsFromGraph closure-* > nix-path-registration
|
|
|
|
# Add symlinks to the top-level store objects.
|
|
for ((n = 0; n < ${#objects[*]}; n++)); do
|
|
object=${objects[$n]}
|
|
symlink=${symlinks[$n]}
|
|
if test "$symlink" != "none"; then
|
|
mkdir -p $(dirname ./$symlink)
|
|
ln -s $object ./$symlink
|
|
fi
|
|
done
|
|
|
|
$extraCommands
|
|
|
|
mkdir -p $out/tarball
|
|
|
|
rm env-vars
|
|
|
|
tar --sort=name --mtime='1970-01-01' -cvJf $out/tarball/$fileName.tar.xz * $extraArgs
|
|
|
|
mkdir -p $out/nix-support
|
|
echo $system > $out/nix-support/system
|
|
echo "file system-tarball $out/tarball/$fileName.tar.xz" > $out/nix-support/hydra-build-products
|