Commit 6fbca348 authored by Alan Pearce's avatar Alan Pearce
Browse files

hblock: init at v3.4.1

parent d206e6b0
Loading
Loading
Loading
Loading
+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 { };