My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/tools/security/nmap/default.nix

13 lines
234 B

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "nmap-3.55";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/nmap-3.55.tar.bz2;
md5 = "88b5f010f43b0e2ee0c2cfb468796aa9";
};
}