lazarus: fix linking by the IDE; using the results of an investigation by @deliciouslytyped

This commit is contained in:
Michael Raskin 2020-05-25 02:21:51 +02:00
parent a1d501b87e
commit d201270d0f
1 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,7 @@
{ stdenv, fetchurl, makeWrapper { stdenv, fetchurl, makeWrapper
, fpc, gtk2, glib, pango, atk, gdk-pixbuf , fpc, gtk2, glib, pango, atk, gdk-pixbuf
, libXi, xorgproto, libX11, libXext , libXi, xorgproto, libX11, libXext
, gdb, gnumake, binutils
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "lazarus"; pname = "lazarus";
@ -34,8 +35,12 @@ stdenv.mkDerivation rec {
''; '';
postInstall = '' postInstall = ''
wrapProgram $out/bin/startlazarus --prefix NIX_LDFLAGS ' ' "'$NIX_LDFLAGS'" \ wrapProgram $out/bin/startlazarus --prefix NIX_LDFLAGS ' ' \
--prefix LCL_PLATFORM ' ' "'$LCL_PLATFORM'" "$(echo "$NIX_LDFLAGS" | sed -re 's/-rpath [^ ]+//g')" \
--prefix NIX_${binutils.infixSalt}_LDFLAGS ' ' \
"$(echo "$NIX_LDFLAGS" | sed -re 's/-rpath [^ ]+//g')" \
--prefix LCL_PLATFORM ' ' "$LCL_PLATFORM" \
--prefix PATH ':' "${fpc}/bin:${gdb}/bin:${gnumake}/bin:${binutils}/bin"
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {