mu: Fix included scripts not finding their dependencies

This commit is contained in:
Charlotte Van Petegem 2021-03-20 15:20:24 +01:00
parent a04bdd8fbe
commit 1678916974
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -1,6 +1,7 @@
{ lib, stdenv, fetchFromGitHub, sqlite, pkg-config, autoreconfHook, pmccabe
, xapian, glib, gmime3, texinfo , emacs, guile
, xapian, glib, gmime3, texinfo, emacs, guile
, gtk3, webkitgtk, libsoup, icu
, makeWrapper
, withMug ? false
, batchSize ? null }:
@ -27,7 +28,7 @@ stdenv.mkDerivation rec {
++ lib.optional (!stdenv.isDarwin) guile
++ lib.optionals withMug [ gtk3 webkitgtk ];
nativeBuildInputs = [ pkg-config autoreconfHook pmccabe ];
nativeBuildInputs = [ pkg-config autoreconfHook pmccabe makeWrapper ];
enableParallelBuilding = true;
@ -37,8 +38,12 @@ stdenv.mkDerivation rec {
--replace "@abs_top_builddir@" "$out"
'';
# Install mug
postInstall = lib.optionalString withMug ''
# Make sure included scripts can find their dependencies & optionally install mug
postInstall = ''
wrapProgram "$out/bin/mu" \
--prefix LD_LIBRARY_PATH : "$out/lib" \
--prefix GUILE_LOAD_PATH : "$out/share/guile/site/2.2"
'' + lib.optionalString withMug ''
for f in mug ; do
install -m755 toys/$f/$f $out/bin/$f
done