mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 01:03:25 +00:00
42 lines
911 B
Nix
42 lines
911 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, coreutils
|
|
, gawk
|
|
, curl
|
|
, gnugrep
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hblock";
|
|
version = "3.4.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hectorm";
|
|
repo = "hblock";
|
|
rev = "v${version}";
|
|
hash = "sha256-HPQ3SKaQlPEEgWjDCs6tCxi6+3pz1gIqDhHMsPT1hVg=";
|
|
};
|
|
|
|
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";
|
|
mainProgram = "hblock";
|
|
homepage = "https://github.com/hectorm/hblock";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ alanpearce ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|