mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 01:33:17 +01:00
librewolf: Remove unnecessary ublock-origin package
Not needed and seems to actually break things since it's included by default in LibreWolf.
This commit is contained in:
parent
c2bc18d696
commit
70c8d3f27a
@ -20,7 +20,6 @@ in
|
|||||||
|
|
||||||
profiles.default = {
|
profiles.default = {
|
||||||
extensions = with nix-config.packages.${pkgs.system}; [
|
extensions = with nix-config.packages.${pkgs.system}; [
|
||||||
ublock-origin
|
|
||||||
yomitan
|
yomitan
|
||||||
redlib
|
redlib
|
||||||
new-tab-identity
|
new-tab-identity
|
||||||
|
@ -1,52 +0,0 @@
|
|||||||
{
|
|
||||||
lib,
|
|
||||||
stdenvNoCC,
|
|
||||||
fetchurl,
|
|
||||||
unzip,
|
|
||||||
zip,
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
||||||
pname = "ublock-origin";
|
|
||||||
version = "1.59.0";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://addons.mozilla.org/firefox/downloads/file/4328681/ublock_origin-${finalAttrs.version}.xpi";
|
|
||||||
hash = "sha256-HbnGdqB9FB+NNtu8JPnj1kpswjQNv8bISLxDlfls+xQ=";
|
|
||||||
};
|
|
||||||
|
|
||||||
dontUnpack = true;
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
unzip
|
|
||||||
zip
|
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
unzip "$src"
|
|
||||||
|
|
||||||
substituteInPlace ./js/vapi-background-ext.js \
|
|
||||||
--replace-fail "browser.dns instanceof Object" "false"
|
|
||||||
|
|
||||||
substituteInPlace ./js/background.js \
|
|
||||||
--replace-fail "cnameUncloakEnabled: true" "cnameUncloakEnabled: false"
|
|
||||||
|
|
||||||
zip -x env-vars -r ublock-origin.xpi *
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
runHook preInstall
|
|
||||||
|
|
||||||
install -Dm644 ublock-origin.xpi "$out/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uBlock0@raymondhill.net.xpi"
|
|
||||||
|
|
||||||
runHook postInstall
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/";
|
|
||||||
description = "Efficient wide-spectrum content blocker";
|
|
||||||
license = lib.licenses.gpl3Plus;
|
|
||||||
maintainers = with lib.maintainers; [ donovanglover ];
|
|
||||||
platforms = lib.platforms.all;
|
|
||||||
};
|
|
||||||
})
|
|
Loading…
Reference in New Issue
Block a user