nixpkgs/pkgs/tools/networking/stevenblack-blocklist/default.nix
2023-07-08 20:09:51 +03:00

21 lines
477 B
Nix

{ lib, fetchFromGitHub }:
let
version = "3.13.10";
in
fetchFromGitHub {
name = "stevenblack-blocklist-${version}";
owner = "StevenBlack";
repo = "hosts";
rev = version;
sha256 = "sha256-LTo0NV1DpHI05AvfmTKNz+/NdXaNoLxgpMhV/HqeT6g=";
meta = with lib; {
description = "Unified hosts file with base extensions";
homepage = "https://github.com/StevenBlack/hosts";
license = licenses.mit;
maintainers = with maintainers; [ fortuneteller2k ];
};
}