packages: Drop invidious

Unfortunately rarely works at the moment due to the recent publicity
towards the project.
This commit is contained in:
Donovan Glover 2024-09-12 18:14:04 -04:00
parent 8c6d46fcc3
commit 0ee75eb1ca
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 0 additions and 34 deletions

View File

@ -100,7 +100,6 @@ in
redlib
new-tab-identity
showdex
invidious
];
inherit settings search;

View File

@ -1,33 +0,0 @@
{
lib,
stdenvNoCC,
fetchurl,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "invidious";
version = "2.0.0";
src = fetchurl {
url = "https://addons.mozilla.org/firefox/downloads/file/3661232/invidious_site-${finalAttrs.version}.xpi";
hash = "sha256-xSyVIz5uqdUoaW+IacG6+VpgBzPUBbpOoXx2x6OrPBQ=";
};
dontUnpack = true;
installPhase = ''
runHook preInstall
install -Dm644 "$src" "$out/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/{0d069122-737b-44f3-8309-80020b0d0c70}.xpi"
runHook postInstall
'';
meta = {
homepage = "https://addons.mozilla.org/en-US/firefox/addon/invidious-site/";
description = "Redirect YouTube links to Invidious";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ donovanglover ];
platforms = lib.platforms.all;
};
})