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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
506 B
Nix
Raw Normal View History

2021-05-29 17:00:14 +00:00
{ lib, fetchFromGitHub }:
let
version = "3.14.79";
2021-05-29 17:00:14 +00:00
in
fetchFromGitHub {
name = "stevenblack-blocklist-${version}";
owner = "StevenBlack";
repo = "hosts";
rev = version;
hash = "sha256-MfQGu+Y4/A0GKIu9d//U+yiP0fN/7cWhEo2dut4UvcE=";
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; [
moni
Guanran928
frontear
];
2021-05-29 17:00:14 +00:00
};
}