mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
70 lines
1.4 KiB
Nix
70 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "stevenblack-blocklist";
|
|
version = "3.14.87";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "StevenBlack";
|
|
repo = "hosts";
|
|
rev = "refs/tags/${finalAttrs.version}";
|
|
hash = "sha256-QkzDj4EUtmNmJltYu6YOZQBtxm8S23PGdg8nosCzK9M=";
|
|
};
|
|
|
|
outputs = [
|
|
# default src fallback
|
|
"out"
|
|
|
|
# base hosts file
|
|
"ads"
|
|
|
|
# extensions only
|
|
"fakenews"
|
|
"gambling"
|
|
"porn"
|
|
"social"
|
|
];
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out $ads $fakenews $gambling $porn $social
|
|
|
|
# out
|
|
find alternates -type f -not -name "hosts" -exec rm {} +
|
|
cp -r alternates $out
|
|
install -Dm644 hosts $out
|
|
|
|
# ads
|
|
install -Dm644 hosts $ads
|
|
|
|
# extensions
|
|
install -Dm644 alternates/fakenews-only/hosts $fakenews
|
|
install -Dm644 alternates/gambling-only/hosts $gambling
|
|
install -Dm644 alternates/porn-only/hosts $porn
|
|
install -Dm644 alternates/social-only/hosts $social
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Unified hosts file with base extensions";
|
|
homepage = "https://github.com/StevenBlack/hosts";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
moni
|
|
Guanran928
|
|
frontear
|
|
];
|
|
};
|
|
})
|