depot/third_party/nixpkgs/pkgs/tools/security/enum4linux/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

50 lines
965 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, makeWrapper
, samba
, perl
, openldap
}:
stdenv.mkDerivation rec {
pname = "enum4linux";
version = "0.9.1";
src = fetchFromGitHub {
owner = "CiscoCXSecurity";
repo = pname;
rev = "v${version}";
sha256 = "sha256-/R0P4Ft9Y0LZwKwhDGAe36UKviih6CNbJbj1lcNKEkM=";
};
dontBuild = true;
nativeBuildInputs = [
makeWrapper
];
buildInputs = [
openldap
perl
samba
];
installPhase = ''
mkdir -p $out/bin
cp enum4linux.pl $out/bin/enum4linux
wrapProgram $out/bin/enum4linux \
--prefix PATH : ${lib.makeBinPath [ samba openldap ]}
'';
meta = with lib; {
description = "A tool for enumerating information from Windows and Samba systems";
mainProgram = "enum4linux";
homepage = "https://labs.portcullis.co.uk/tools/enum4linux/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ fishi0x01 ];
platforms = platforms.unix;
};
}