mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "havn";
|
|
version = "0.1.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mrjackwills";
|
|
repo = "havn";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-6fj/RtHqZihhqK+qzGNOouLOrydP5bnylBIhOWJ7fuQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-hV2HxgksFj80eDNAAbxJcMpjX58yCkk6xS+gv2on9YA=";
|
|
|
|
checkFlags = [
|
|
# Skip tests that require network access
|
|
"--skip=scanner::tests::test_scanner_1000_80_443"
|
|
"--skip=scanner::tests::test_scanner_all_80"
|
|
"--skip=scanner::tests::test_scanner_port_80"
|
|
"--skip=terminal::print::tests::test_terminal_monochrome_false"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/mrjackwills/havn";
|
|
description = "Fast configurable port scanner with reasonable defaults";
|
|
changelog = "https://github.com/mrjackwills/havn/blob/v${version}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
|
|
mainProgram = "havn";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|