depot/third_party/nixpkgs/pkgs/tools/networking/hblock/default.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

39 lines
851 B
Nix

{ 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 ];
};
}