ooniprobe-cli: init at 3.14.2
Co-authored-by: Robert Schütz <nix@dotlambda.de>
This commit is contained in:
parent
95af2245a3
commit
f1ef2bc428
27
pkgs/tools/networking/ooniprobe-cli/default.nix
Normal file
27
pkgs/tools/networking/ooniprobe-cli/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "ooniprobe-cli";
|
||||
version = "3.14.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ooni";
|
||||
repo = "probe-cli";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-9n/Ozyy1QzjFum/R/X2DChzTHl70e+JQuo09nToAIcE=";
|
||||
};
|
||||
|
||||
vendorSha256 = "/fN9nRYOy00EeI8zZQFkCgTMGLZ0pFbYmRdTr2NLIsc=";
|
||||
|
||||
subPackages = [ "cmd/ooniprobe" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "The Open Observatory of Network Interference command line network probe";
|
||||
homepage = "https://ooni.org/install/cli";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -8594,6 +8594,8 @@ with pkgs;
|
||||
|
||||
onlykey = callPackage ../tools/security/onlykey { node_webkit = nwjs; };
|
||||
|
||||
ooniprobe-cli = callPackage ../tools/networking/ooniprobe-cli { };
|
||||
|
||||
openapi-generator-cli = callPackage ../tools/networking/openapi-generator-cli { jre = pkgs.jre_headless; };
|
||||
openapi-generator-cli-unstable = callPackage ../tools/networking/openapi-generator-cli/unstable.nix { jre = pkgs.jre_headless; };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user