add nmap, commandline version only

svn path=/nixpkgs/trunk/; revision=1237
This commit is contained in:
Armijn Hemel 2004-08-06 10:00:53 +00:00
parent d45b352ba7
commit 2e2bcda7c2
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,3 @@
. $stdenv/setup
genericBuild

View file

@ -0,0 +1,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";
};
}