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
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
PERL5LIB="$PERL5LIB${PERL5LIB:+:}$out/lib/perl5/site_perl"
|
|
|
|
perlFlags=
|
|
for i in $(IFS=:; echo $PERL5LIB); do
|
|
perlFlags="$perlFlags -I$i"
|
|
done
|
|
|
|
oldPreConfigure="$preConfigure"
|
|
preConfigure() {
|
|
|
|
eval "$oldPreConfigure"
|
|
|
|
find . | while read fn; do
|
|
if test -f "$fn"; then
|
|
first=$(dd if="$fn" count=2 bs=1 2> /dev/null)
|
|
if test "$first" = "#!"; then
|
|
echo "patching $fn..."
|
|
sed -i "$fn" -e "s|^#\!\(.*\bperl\b.*\)$|#\!\1$perlFlags|"
|
|
fi
|
|
fi
|
|
done
|
|
|
|
local flagsArray=()
|
|
concatTo flagsArray makeMakerFlags
|
|
|
|
# Perl expect these to be exported
|
|
export CPPRUN="$CC -E"
|
|
export FULL_AR=$AR
|
|
# Requires to be $CC since it tries adding "-Wl"
|
|
export LD=$CC
|
|
perl Makefile.PL AR="$AR" FULL_AR="$AR" CC="$CC" LD="$CC" CPPRUN="$CPPRUN" \
|
|
PREFIX=$out INSTALLDIRS=site "${flagsArray[@]}" \
|
|
PERL=$(type -P perl) FULLPERL=\"$fullperl/bin/perl\"
|
|
}
|
|
|
|
if test -n "$perlPreHook"; then
|
|
eval "$perlPreHook"
|
|
fi
|
|
|
|
genericBuild
|
|
|
|
if test -n "$perlPostHook"; then
|
|
eval "$perlPostHook"
|
|
fi
|