nix-config/packages/ublock-origin.nix
Donovan Glover c2bc18d696
packages(ublock-origin): Document attempt at changing settings
This seemed to work to an extent but resulted in some weirdness with the
uBlock Origin from LibreWolf and the uBlock Origin from this package.

The actual setting didn't change even though it was disabled in the
interface. Re-enabling the checkbox and toggling it didn't change
anything either.
2024-08-30 23:58:50 -04:00

53 lines
1.2 KiB
Nix

{
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;
};
})