* Automatically propagate pkgconfig "Requires" fields so I don't have

to figure out the propagatedBuildInputs.

svn path=/nixpkgs/trunk/; revision=4521
This commit is contained in:
Eelco Dolstra 2006-01-08 22:09:44 +00:00
parent c45d0521bd
commit ebc93faa32
3 changed files with 326 additions and 1 deletions

View File

@ -0,0 +1,37 @@
# This is the builder for all X11R7 components.
source $stdenv/setup
# After installation, automatically add all "Requires" fields in the
# pkgconfig files (*.pc) to the propagated build inputs.
postInstall=postInstall
postInstall() {
local r p requires
requires=$(grep "Requires:" $out/lib/pkgconfig/*.pc | sed "s/Requires://")
echo "propagating requisites $requires"
for r in $requires; do
for p in $pkgs; do
echo $r $p
if test -e $p/lib/pkgconfig/$r.pc; then
echo " found requisite $r in $p"
propagatedBuildInputs="$propagatedBuildInputs $p"
fi
done
done
ensureDir "$out/nix-support"
echo "$propagatedBuildInputs" > "$out/nix-support/propagated-build-inputs"
}
installFlags="appdefaultdir=$out/share/X11/app-defaults"
if -n "$x11BuildHook"; then
source $x11BuildHook
fi
genericBuild

File diff suppressed because it is too large Load Diff

View File

@ -143,6 +143,7 @@ foreach my $pkg (sort (keys %pkgURLs)) {
print OUT <<EOF
$pkg = stdenv.mkDerivation {
name = "$pkgNames{$pkg}";
builder = ./builder.sh;
src = fetchurl {
url = $pkgURLs{$pkg};
md5 = "$pkgHashes{$pkg}";