
It's hard to put the sourcing of ./.attrs.sh into all builder consistently - mistakes will happen. Thus, load structured attrs once in make-derivation and then source the remaining builder on top. This should fix quite a few builders with structured attributes in principle. Most importantly it helps substitute / substituteAll, which are required for bootstrap on some platforms.
20 lines
564 B
Bash
20 lines
564 B
Bash
echo "Cloning Fossil $url [$rev] into $out"
|
|
|
|
# Fossil, bless its adorable little heart, wants to write global configuration
|
|
# to $HOME/.fossil. AFAICT, there is no way to disable this functionality.
|
|
# Instead, we'll let it write to the build directory.
|
|
export HOME=$(pwd)
|
|
|
|
# We must explicitly set the admin user for the clone to something reasonable.
|
|
fossil clone -A nobody "$url" fossil-clone.fossil
|
|
|
|
mkdir fossil-clone
|
|
WORKDIR=$(pwd)
|
|
mkdir $out
|
|
pushd $out
|
|
fossil open "$WORKDIR/fossil-clone.fossil" "$rev"
|
|
popd
|
|
|
|
# Just nuke the checkout file.
|
|
rm $out/.fslckout
|