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
40 lines
1003 B
Bash
40 lines
1003 B
Bash
# This is the builder for all X.org components.
|
|
|
|
# After installation, automatically add all "Requires" fields in the
|
|
# pkgconfig files (*.pc) to the propagated build inputs.
|
|
origPostInstall=$postInstall
|
|
postInstall() {
|
|
if test -n "$origPostInstall"; then eval "$origPostInstall"; fi
|
|
|
|
local r p requires
|
|
set +o pipefail
|
|
requires=$(grep "Requires:" ${!outputDev}/lib/pkgconfig/*.pc | \
|
|
sed "s/Requires://" | sed "s/,/ /g")
|
|
set -o pipefail
|
|
|
|
echo "propagating requisites $requires"
|
|
|
|
for r in $requires; do
|
|
for p in "${pkgsHostHost[@]}" "${pkgsHostTarget[@]}"; do
|
|
if test -e $p/lib/pkgconfig/$r.pc; then
|
|
echo " found requisite $r in $p"
|
|
appendToVar propagatedBuildInputs "$p"
|
|
fi
|
|
done
|
|
done
|
|
}
|
|
|
|
|
|
prependToVar installFlags "appdefaultdir=$out/share/X11/app-defaults"
|
|
|
|
|
|
if test -n "$x11BuildHook"; then
|
|
source $x11BuildHook
|
|
fi
|
|
|
|
|
|
enableParallelBuilding=1
|
|
enableParallelInstalling=1
|
|
|
|
genericBuild
|