summary refs log tree commit diff
path: root/pkgs/tools/security/nmap/default.nix
blob: 0e32a8f6dc0a0fdcffaa208a3f946e5b25529abb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl}:
  
stdenv.mkDerivation {
  name = "nmap-3.55";
  
  builder = ./builder.sh;
  src = fetchurl {
    url = http://download.insecure.org/nmap/dist/nmap-3.55.tar.bz2;
    md5 = "88b5f010f43b0e2ee0c2cfb468796aa9";
  };
  
}