mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #131002 from Artturin/mc-lib
This commit is contained in:
commit
8eca793f8a
1 changed files with 6 additions and 1 deletions
|
@ -57,9 +57,14 @@ stdenv.mkDerivation rec {
|
|||
--replace /bin/rm ${coreutils}/bin/rm
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
postFixup = ''
|
||||
# remove unwanted build-dependency references
|
||||
sed -i -e "s!PKG_CONFIG_PATH=''${PKG_CONFIG_PATH}!PKG_CONFIG_PATH=$(echo "$PKG_CONFIG_PATH" | sed -e 's/./0/g')!" $out/bin/mc
|
||||
|
||||
# libX11.so is loaded dynamically so autopatch doesn't detect it
|
||||
patchelf \
|
||||
--add-needed ${libX11}/lib/libX11.so \
|
||||
$out/bin/mc
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue