nixpkgs/pkgs/tools/networking/stevenblack-blocklist/default.nix

21 lines
475 B
Nix
Raw Normal View History

2021-05-29 17:00:14 +00:00
{ lib, fetchFromGitHub }:
let
2021-10-02 18:12:36 +00:00
version = "3.9.7";
2021-05-29 17:00:14 +00:00
in
fetchFromGitHub {
name = "stevenblack-blocklist-${version}";
owner = "StevenBlack";
repo = "hosts";
rev = version;
2021-10-02 18:12:36 +00:00
sha256 = "sha256-AMeUY4aeyPIyirCLawLVjqDGB8z28q/Hm/UI+wGYZvY=";
2021-05-29 17:00:14 +00:00
meta = with lib; {
description = "Unified hosts file with base extensions";
homepage = "https://github.com/StevenBlack/hosts";
license = licenses.mit;
maintainers = with maintainers; [ fortuneteller2k ];
};
}