Merge pull request #265083 from bycEEE/braa

This commit is contained in:
Artturi 2023-11-19 01:28:05 +02:00 committed by GitHub
commit 78804c0af4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View File

@ -2688,6 +2688,12 @@
githubId = 61636;
name = "Brad Langhorst";
};
bycEEE = {
email = "bycEEE@gmail.com";
github = "bycEEE";
githubId = 8891115;
name = "Brian Choy";
};
bzizou = {
email = "Bruno@bzizou.net";
github = "bzizou";

View File

@ -0,0 +1,32 @@
{
lib,
stdenv,
fetchzip,
zlib,
}:
stdenv.mkDerivation rec {
pname = "braa";
version = "0.82";
src = fetchzip {
url = "http://s-tech.elsat.net.pl/${pname}/${pname}-${version}.tar.gz";
hash = "sha256-GS3kk432BdGx/sLzzjXvotD9Qn4S3U4XtMmM0fWMhGA=";
};
buildInputs = [zlib];
installPhase = ''
runHook preInstall
install -Dm755 braa $out/bin/braa
runHook postInstall
'';
meta = with lib; {
description = "A mass snmp scanner";
homepage = "http://s-tech.elsat.net.pl";
license = licenses.gpl2Only;
platforms = platforms.unix;
maintainers = with maintainers; [bycEEE];
mainProgram = "braa";
};
}