about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/enum4linux/default.nix
blob: 9a7d1861d9bd69ca846fe47812e357a3c74c72c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchurl, makeWrapper, samba, perl, openldap }:

stdenv.mkDerivation rec {
  pname = "enum4linux";
  version = "0.8.9";
  src = fetchurl {
    url = "https://labs.portcullis.co.uk/download/enum4linux-${version}.tar.gz";
    sha256 = "41334df0cb1ba82db9e3212981340372bb355a8160073331d2a1610908a62d85";
  };

  dontBuild = true;
  nativeBuildInputs = [ makeWrapper ];
  buildInputs = [ samba perl openldap ];

  installPhase = ''
    mkdir -p $out/bin
    cp enum4linux.pl $out/bin/enum4linux

    wrapProgram $out/bin/enum4linux \
      --prefix PATH : ${stdenv.lib.makeBinPath [ samba openldap ]}
  '';

  meta = with stdenv.lib; {
    description = "A tool for enumerating information from Windows and Samba systems";
    homepage = "https://labs.portcullis.co.uk/tools/enum4linux/";
    license = licenses.gpl2;
    platforms = platforms.unix;
    maintainers = [ maintainers.fishi0x01 ];
  };
}