forked from mirrors/nixpkgs
Merge pull request #230704 from alanpearce/pkg-hblock
hblock: init at 3.4.1
This commit is contained in:
commit
c0c84d5292
|
@ -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
pkgs/tools/networking/hblock/default.nix
Normal file
39
pkgs/tools/networking/hblock/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue