* GNU Netcat.

svn path=/nixpkgs/trunk/; revision=6120
This commit is contained in:
Eelco Dolstra 2006-08-15 13:22:45 +00:00
parent 76eb096fac
commit 3fd8841922
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "netcat-gnu-0.7.1";
src = fetchurl {
url = http://osdn.dl.sourceforge.net/sourceforge/netcat/netcat-0.7.1.tar.bz2;
md5 = "0a29eff1736ddb5effd0b1ec1f6fe0ef";
};
}

View File

@ -319,6 +319,10 @@ rec {
inherit stdenv dhcp;
};
netcat = (import ../tools/networking/netcat) {
inherit fetchurl stdenv;
};
graphviz = (import ../tools/graphics/graphviz) {
inherit fetchurl stdenv libpng libjpeg expat x11 yacc libtool;