onesixtyone: init at unstable-2019-12-26

gstqt5
Karl Fischer 2020-01-27 14:55:39 +01:00
parent 36da345caa
commit da971031ea
No known key found for this signature in database
GPG Key ID: 5D5760B15ED415D5
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "onesixtyone";
version = "unstable-2019-12-26";
src = fetchFromGitHub {
owner = "trailofbits";
repo = "onesixtyone";
rev = "9ce1dcdad73d45c8694086a4f90d7713be1cbdd7";
sha256 = "111nxn4pcbx6p9j8cjjxv1j1s7dgf7f4dix8acsmahwbpzinzkg3";
};
buildPhase = ''
$CC -o onesixtyone onesixtyone.c
'';
installPhase = ''
install -D onesixtyone $out/bin/onesixtyone
'';
meta = with stdenv.lib; {
description = "Fast SNMP Scanner";
homepage = "https://github.com/trailofbits/onesixtyone";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = [ maintainers.fishi0x01 ];
};
}

View File

@ -181,6 +181,8 @@ in
enum4linux = callPackage ../tools/security/enum4linux {};
onesixtyone = callPackage ../tools/security/onesixtyone {};
device-tree_rpi = callPackage ../os-specific/linux/device-tree/raspberrypi.nix {};
diffPlugins = (callPackage ../build-support/plugins.nix {}).diffPlugins;