Updated nmap; X version also builds now

svn path=/nixpkgs/trunk/; revision=9043
This commit is contained in:
Michael Raskin 2007-08-04 12:49:53 +00:00
parent 60534bcce5
commit ffc6782e4e
2 changed files with 7 additions and 11 deletions

View file

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

View file

@ -1,12 +1,11 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, libpcap, libX11, gtk, pkgconfig}:
stdenv.mkDerivation {
name = "nmap-3.55";
builder = ./builder.sh;
name = "Nmap";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/nmap-3.55.tar.bz2;
md5 = "88b5f010f43b0e2ee0c2cfb468796aa9";
url = http://insecure.org/nmap/dist/nmap-4.21ALPHA4.tar.bz2;
md5 = "eae883e12f3640f7c52d66e0844d0ab1";
};
buildInputs = [libpcap libX11 gtk pkgconfig];
}