mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
some evaluation fixes
Not all multiple-output fixups were properly tested.
This commit is contained in:
parent
148e03b2f1
commit
31d9263159
|
@ -22,7 +22,7 @@ pythonPackages.buildPythonPackage rec {
|
|||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/blink \
|
||||
--prefix LD_LIBRARY_PATH ":" ${gnutls.lib}/lib
|
||||
--prefix LD_LIBRARY_PATH ":" ${gnutls.out}/lib
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
|
@ -31,7 +31,7 @@ stdenv.mkDerivation {
|
|||
for f in $(find $out); do
|
||||
if [ -f "$f" ] && patchelf "$f" 2> /dev/null; then
|
||||
patchelf --set-interpreter ${glibc.out}/lib/ld-linux.so.2 \
|
||||
--set-rpath $out/lib:${gcc.lib}/lib:${ncurses.lib}/lib \
|
||||
--set-rpath $out/lib:${gcc.lib or gcc}/lib:${ncurses.lib}/lib \
|
||||
"$f" || true
|
||||
fi
|
||||
done
|
||||
|
|
|
@ -50,7 +50,7 @@ stdenv.mkDerivation {
|
|||
${if mysqlSupport then "-qt-sql-mysql -L${mysql.lib}/lib/mysql -I${mysql.lib}/include/mysql" else ""}
|
||||
${if xftSupport then "-xft
|
||||
-L${libXft.out}/lib -I${libXft.dev}/include
|
||||
-L${libXft.freetype.lib}/lib -I${libXft.freetype.dev}/include
|
||||
-L${libXft.freetype.out}/lib -I${libXft.freetype.dev}/include
|
||||
-L${libXft.fontconfig.lib}/lib -I${libXft.fontconfig.dev}/include" else "-no-xft"}
|
||||
";
|
||||
|
||||
|
|
|
@ -395,7 +395,7 @@ let
|
|||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/alot \
|
||||
--prefix LD_LIBRARY_PATH : '${lib.makeLibraryPath [ pkgs.notmuch pkgs.file pkgs.gpgme ]}'
|
||||
--prefix LD_LIBRARY_PATH : '${pkgs.lib.makeLibraryPath [ pkgs.notmuch pkgs.file pkgs.gpgme ]}'
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
@ -14692,7 +14692,7 @@ let
|
|||
# I don't know why I need to add these libraries. Shouldn't they
|
||||
# be part of wxPython?
|
||||
postInstall = ''
|
||||
libspaths=${with pkgs.xorg; lib.makeLibraryPath [ libSM libXScrnSaver ]}
|
||||
libspaths=${with pkgs.xorg; pkgs.lib.makeLibraryPath [ libSM libXScrnSaver ]}
|
||||
wrapProgram $out/bin/taskcoach.py \
|
||||
--prefix LD_LIBRARY_PATH : $libspaths
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue