Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
701 B
Bash
28 lines
701 B
Bash
# This setup hook moves $out/{man,doc,info} to $out/share.
|
|
|
|
preFixupHooks+=(_moveToShare)
|
|
|
|
_moveToShare() {
|
|
if [ -n "$__structuredAttrs" ]; then
|
|
if [ -z "${forceShare-}" ]; then
|
|
forceShare=( man doc info )
|
|
fi
|
|
else
|
|
forceShare=( ${forceShare:-man doc info} )
|
|
fi
|
|
|
|
if [[ -z "$out" ]]; then return; fi
|
|
|
|
for d in "${forceShare[@]}"; do
|
|
if [ -d "$out/$d" ]; then
|
|
if [ -d "$out/share/$d" ]; then
|
|
echo "both $d/ and share/$d/ exist!"
|
|
else
|
|
echo "moving $out/$d to $out/share/$d"
|
|
mkdir -p $out/share
|
|
mv $out/$d $out/share/
|
|
fi
|
|
fi
|
|
done
|
|
}
|