Skip to content

Instantly share code, notes, and snippets.

@kiloreux
Last active March 21, 2018 12:35
Show Gist options
  • Save kiloreux/e0d3b53a7bbb7473f322c0861a0d391a to your computer and use it in GitHub Desktop.
Save kiloreux/e0d3b53a7bbb7473f322c0861a0d391a to your computer and use it in GitHub Desktop.
chromium = pkgs.chromium.overrideAttrs (drv: {
installPhase = drv.installPhase + ''
for x in $out/bin/*; do wrapProgram $x --unset LD_LIBRARY_PATH ;done \
for x in $sandbox/bin/*; do wrapProgram $x --unset LD_LIBRARY_PATH ;done
'';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment