mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
* 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
37
pkgs/servers/x11/xorg/builder.sh
Normal file
37
pkgs/servers/x11/xorg/builder.sh
Normal 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
@ -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}";
|
||||
|
Loading…
Reference in New Issue
Block a user