Unverified Commit c0c84d52 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #230704 from alanpearce/pkg-hblock

hblock: init at 3.4.1
parents a1742310 6fbca348
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -579,6 +579,12 @@
    githubId = 20405311;
    name = "Aksh Gupta";
  };
  alanpearce = {
    email = "alan@alanpearce.eu";
    github = "alanpearce";
    githubId = 850317;
    name = "Alan Pearce";
  };
  alapshin = {
    email = "alapshin@fastmail.com";
    github = "alapshin";
+39 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, makeWrapper
, coreutils
, gawk
, curl
, gnugrep
}:

stdenv.mkDerivation rec {
  pname = "hblock";
  version = "3.4.1";

  src = fetchFromGitHub {
    owner = "hectorm";
    repo = "hblock";
    rev = "v${version}";
    hash = "sha256-yOX/CsWs5HVH9s0KCzZm6PPqlDJHxz46jJB6KKC7Hsg=";
  };

  buildInputs = [ coreutils curl gnugrep gawk ];
  nativeBuildInputs = [ makeWrapper ];

  installFlags = [
    "prefix=$(out)"
  ];
  postInstall = ''
    wrapProgram "$out/bin/hblock" \
      --prefix PATH : ${lib.makeBinPath [ coreutils curl gnugrep gawk ]}
  '';

  meta = with lib; {
    description = "Improve your security and privacy by blocking ads, tracking and malware domains";
    homepage = "https://github.com/hectorm/hblock";
    license = licenses.mit;
    maintainers = with maintainers; [ alanpearce ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1567,6 +1567,8 @@ with pkgs;
  fwbuilder = libsForQt5.callPackage ../tools/security/fwbuilder { };
  hblock = callPackage ../tools/networking/hblock { };
  headsetcontrol = callPackage ../tools/audio/headsetcontrol { };
  headset-charge-indicator = callPackage ../tools/audio/headset-charge-indicator { };