Merge pull request #237199 from delroth/mupdf-shared

mupdf: actually build and install the shared libraries version

authored by

Pierre Bourdon and committed by
GitHub
1aa3a9fe e23fe5c0

+1 -3
+1 -3
pkgs/applications/misc/mupdf/default.nix
··· 64 64 substituteInPlace Makerules --replace "(shell pkg-config" "(shell $PKG_CONFIG" 65 65 ''; 66 66 67 - # Use shared libraries to decrease size 68 - buildFlags = [ "shared" ]; 69 - 70 67 makeFlags = [ 71 68 "prefix=$(out)" 69 + "shared=yes" 72 70 "USE_SYSTEM_LIBS=yes" 73 71 "PKG_CONFIG=${buildPackages.pkg-config}/bin/${buildPackages.pkg-config.targetPrefix}pkg-config" 74 72 ] ++ lib.optionals (!enableX11) [ "HAVE_X11=no" ]