* 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:
parent
c45d0521bd
commit
ebc93faa32
|
@ -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
|
@ -143,6 +143,7 @@ foreach my $pkg (sort (keys %pkgURLs)) {
|
||||||
print OUT <<EOF
|
print OUT <<EOF
|
||||||
$pkg = stdenv.mkDerivation {
|
$pkg = stdenv.mkDerivation {
|
||||||
name = "$pkgNames{$pkg}";
|
name = "$pkgNames{$pkg}";
|
||||||
|
builder = ./builder.sh;
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = $pkgURLs{$pkg};
|
url = $pkgURLs{$pkg};
|
||||||
md5 = "$pkgHashes{$pkg}";
|
md5 = "$pkgHashes{$pkg}";
|
||||||
|
|
Loading…
Reference in New Issue