Merge pull request #297466 from pillowtrucker/unjank-firefox-contentAddressed
try to fix ca-derivations firefox
This commit is contained in:
commit
562f67be78
1 changed files with 5 additions and 2 deletions
|
@ -18,6 +18,7 @@
|
||||||
, sndio
|
, sndio
|
||||||
, libjack2
|
, libjack2
|
||||||
, speechd
|
, speechd
|
||||||
|
, removeReferencesTo
|
||||||
}:
|
}:
|
||||||
|
|
||||||
## configurability of the wrapper itself
|
## configurability of the wrapper itself
|
||||||
|
@ -238,7 +239,7 @@ let
|
||||||
};
|
};
|
||||||
}));
|
}));
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper lndir jq ];
|
nativeBuildInputs = [ makeWrapper lndir jq removeReferencesTo ];
|
||||||
buildInputs = [ browser.gtk3 ];
|
buildInputs = [ browser.gtk3 ];
|
||||||
|
|
||||||
|
|
||||||
|
@ -413,7 +414,9 @@ let
|
||||||
passthru = { unwrapped = browser; };
|
passthru = { unwrapped = browser; };
|
||||||
|
|
||||||
disallowedRequisites = [ stdenv.cc ];
|
disallowedRequisites = [ stdenv.cc ];
|
||||||
|
postInstall = ''
|
||||||
|
find "$out" -type f -exec remove-references-to -t ${stdenv.cc} '{}' +
|
||||||
|
'';
|
||||||
meta = browser.meta // {
|
meta = browser.meta // {
|
||||||
inherit (browser.meta) description;
|
inherit (browser.meta) description;
|
||||||
mainProgram = launcherName;
|
mainProgram = launcherName;
|
||||||
|
|
Loading…
Reference in a new issue