2023-01-26 20:00:44 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, darwin }:
|
2022-08-20 12:38:24 +00:00
|
|
|
|
2023-01-26 20:00:44 +00:00
|
|
|
let
|
|
|
|
inherit (darwin.apple_sdk.frameworks) Security;
|
|
|
|
in
|
2022-08-20 12:38:24 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "diswall";
|
2023-04-29 11:21:32 +00:00
|
|
|
version = "0.4.0";
|
2022-08-20 12:38:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dis-works";
|
|
|
|
repo = "diswall-rs";
|
|
|
|
rev = "v${version}";
|
2023-04-29 11:21:32 +00:00
|
|
|
sha256 = "sha256-g5KhJlkW32b2g2ZtpYd/52TTmCezxAT5SavvgXYEJoE=";
|
2022-08-20 12:38:24 +00:00
|
|
|
};
|
|
|
|
|
2023-01-26 20:00:44 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
|
|
Security
|
|
|
|
];
|
|
|
|
|
2023-04-29 11:21:32 +00:00
|
|
|
cargoHash = "sha256-SnYNp+iWqDPi2kdM3qzGIj6jsWgl0pj0x9f3gd7lbpA=";
|
2022-08-20 12:38:24 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Distributed firewall";
|
|
|
|
longDescription = ''
|
|
|
|
Diswall (distributed firewall) - a client of distributed firewall
|
|
|
|
working on many servers and using NATS for the transport level.
|
|
|
|
Its purpose - blocking IPs with a blink of the eye on all servers
|
|
|
|
in any infrastructure when some IP checks any of the closed ports
|
|
|
|
of anyone of these servers. Therefore, diswall provides good
|
|
|
|
protection of whole infrastructure (as anti-shodan) preventing
|
|
|
|
intruder to get any system information.
|
|
|
|
'';
|
|
|
|
homepage = "https://www.diswall.stream";
|
|
|
|
license = with licenses; [ gpl3 ];
|
|
|
|
maintainers = with maintainers; [ izorkin ];
|
|
|
|
};
|
|
|
|
}
|