3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/stevenblack-blocklist/default.nix
2021-07-02 06:39:56 +08:00

21 lines
476 B
Nix

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