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