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

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

21 lines
477 B
Nix
Raw Normal View History

2021-05-29 19:00:14 +02:00
{ lib, fetchFromGitHub }:
let
version = "3.11.19";
2021-05-29 19:00:14 +02:00
in
fetchFromGitHub {
name = "stevenblack-blocklist-${version}";
owner = "StevenBlack";
repo = "hosts";
rev = version;
sha256 = "sha256-YGD3I64g/zD5iX2oIU6Qy/WqzcWcaNs1HjMUBeKcDZ4=";
2021-05-29 19:00:14 +02:00
meta = with lib; {
description = "Unified hosts file with base extensions";
homepage = "https://github.com/StevenBlack/hosts";
license = licenses.mit;
maintainers = with maintainers; [ fortuneteller2k ];
};
}