packages/ai_blocklist: init

This commit is contained in:
Primrose 2025-10-31 12:05:03 +08:00
parent adf81cc4bd
commit 12ccc6c619
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -0,0 +1,23 @@
{
fetchFromGitHub,
stdenvNoCC,
lib,
}: let
rev = "9bb188e2701138e03f73bacebd6b19b181ca0012";
in
stdenvNoCC.mkDerivation {
pname = "ai_blocklist";
version = "unstable-" + lib.substring 0 8 rev;
src = fetchFromGitHub {
owner = "laylavish";
repo = "uBlockOrigin-HUGE-AI-Blocklist";
inherit rev;
hash = "sha256-p3wfR28DH6V8BHn9DT10d09Yq3mdbBecWwlR1CdDYUA=";
};
installPhase = ''
cp noai_hosts.txt $out
sed -i 's/^0.0.0.0 //' $out
'';
}