about summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-05-30 03:59:40 +0200
committerGitHub <noreply@github.com>2021-05-30 03:59:40 +0200
commit0e361e5008d44f4c9253851dd7b7d50f901a1e09 (patch)
tree0f3fccfd79189e6e0ac2f1b81d82ed10aa65b51a /pkgs/tools/networking
parentb5d9ab3f1cb527cefd94f7e3e52f0cabd19f4772 (diff)
parenta8fb730e04cd7a256ea1e1c3d1d9f21258bddb89 (diff)
downloadnixlib-0e361e5008d44f4c9253851dd7b7d50f901a1e09.tar
nixlib-0e361e5008d44f4c9253851dd7b7d50f901a1e09.tar.gz
nixlib-0e361e5008d44f4c9253851dd7b7d50f901a1e09.tar.bz2
nixlib-0e361e5008d44f4c9253851dd7b7d50f901a1e09.tar.lz
nixlib-0e361e5008d44f4c9253851dd7b7d50f901a1e09.tar.xz
nixlib-0e361e5008d44f4c9253851dd7b7d50f901a1e09.tar.zst
nixlib-0e361e5008d44f4c9253851dd7b7d50f901a1e09.zip
Merge pull request #124883 from fortuneteller2k/stevenblack-blocklist
stevenblack-blocklist: init at 3.7.6
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/stevenblack-blocklist/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/tools/networking/stevenblack-blocklist/default.nix b/pkgs/tools/networking/stevenblack-blocklist/default.nix
new file mode 100644
index 000000000000..f3f375818849
--- /dev/null
+++ b/pkgs/tools/networking/stevenblack-blocklist/default.nix
@@ -0,0 +1,20 @@
+{ lib, fetchFromGitHub }:
+
+let
+  version = "3.7.6";
+in
+fetchFromGitHub {
+  name = "stevenblack-blocklist-${version}";
+
+  owner = "StevenBlack";
+  repo = "hosts";
+  rev = version;
+  sha256 = "sha256-zjUdHzsjv16PHXfxTuVC6aNKfh+73dH1AABvq1MArXI=";
+
+  meta = with lib; {
+    description = "Unified hosts file with base extensions";
+    homepage = "https://github.com/StevenBlack/hosts";
+    license = licenses.mit;
+    maintainers = with maintainers; [ fortuneteller2k ];
+  };
+}