forked from mirrors/nixpkgs
libXaw: fixed broken installation in MacOS X
See comments in file for further details. svn path=/nixpkgs/trunk/; revision=17609
This commit is contained in:
parent
317fd0edd5
commit
1570ccf3cf
|
@ -665,6 +665,19 @@ let
|
||||||
sha256 = "1yaslcpj6sd6s8gx2hv60gfjf515gggd8f2jv4zqbp5q9wcapx0i";
|
sha256 = "1yaslcpj6sd6s8gx2hv60gfjf515gggd8f2jv4zqbp5q9wcapx0i";
|
||||||
};
|
};
|
||||||
buildInputs = [pkgconfig printproto libX11 libXau libXext xextproto libXmu libXp libXpm xproto libXt ];
|
buildInputs = [pkgconfig printproto libX11 libXau libXext xextproto libXmu libXp libXpm xproto libXt ];
|
||||||
|
|
||||||
|
# The libXaw installation is broken on MacOS X. The package has hard-coded
|
||||||
|
# know-how that assumes shared libraries use an .so suffix. MacOS, however,
|
||||||
|
# uses .dylib. Furthermore, the package fails to install an unversioned
|
||||||
|
# libtool .la file for the library.
|
||||||
|
postInstall = ''
|
||||||
|
cd $out/lib
|
||||||
|
ln -s libXaw8.la libXaw.la
|
||||||
|
if [ ${stdenv.system} = "i686-darwin" ]; then
|
||||||
|
rm *.so*
|
||||||
|
ln -s libXaw8.dylib libXaw.dylib
|
||||||
|
fi
|
||||||
|
'';
|
||||||
})) // {inherit printproto libX11 libXau libXext xextproto libXmu libXp libXpm xproto libXt ;};
|
})) // {inherit printproto libX11 libXau libXext xextproto libXmu libXp libXpm xproto libXt ;};
|
||||||
|
|
||||||
libXcomposite = (stdenv.mkDerivation ((if overrides ? libXcomposite then overrides.libXcomposite else x: x) {
|
libXcomposite = (stdenv.mkDerivation ((if overrides ? libXcomposite then overrides.libXcomposite else x: x) {
|
||||||
|
|
Loading…
Reference in a new issue