mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 20:43:28 +00:00
25 lines
506 B
Nix
25 lines
506 B
Nix
{ lib, fetchFromGitHub }:
|
|
|
|
let
|
|
version = "3.14.79";
|
|
in
|
|
fetchFromGitHub {
|
|
name = "stevenblack-blocklist-${version}";
|
|
|
|
owner = "StevenBlack";
|
|
repo = "hosts";
|
|
rev = version;
|
|
hash = "sha256-MfQGu+Y4/A0GKIu9d//U+yiP0fN/7cWhEo2dut4UvcE=";
|
|
|
|
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
|
|
];
|
|
};
|
|
}
|