Merge pull request #297466 from pillowtrucker/unjank-firefox-contentAddressed

try to fix ca-derivations firefox

authored by Martin Weinelt and committed by GitHub 562f67be f6959c2d

+5 -2
+5 -2
pkgs/applications/networking/browsers/firefox/wrapper.nix
··· 18 18 , sndio 19 19 , libjack2 20 20 , speechd 21 + , removeReferencesTo 21 22 }: 22 23 23 24 ## configurability of the wrapper itself ··· 238 239 }; 239 240 })); 240 241 241 - nativeBuildInputs = [ makeWrapper lndir jq ]; 242 + nativeBuildInputs = [ makeWrapper lndir jq removeReferencesTo ]; 242 243 buildInputs = [ browser.gtk3 ]; 243 244 244 245 ··· 413 414 passthru = { unwrapped = browser; }; 414 415 415 416 disallowedRequisites = [ stdenv.cc ]; 416 - 417 + postInstall = '' 418 + find "$out" -type f -exec remove-references-to -t ${stdenv.cc} '{}' + 419 + ''; 417 420 meta = browser.meta // { 418 421 inherit (browser.meta) description; 419 422 mainProgram = launcherName;