Adding netkit tftp client and server.

svn path=/nixpkgs/trunk/; revision=16780
This commit is contained in:
Lluís Batlle i Rossell 2009-08-19 20:19:27 +00:00
parent f474284147
commit c06da1dce7
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "netkit-tftp-0.17";
src = fetchurl {
url = "ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${name}.tar.gz";
sha256 = "0kfibbjmy85r3k92cdchha78nzb6silkgn1zaq9g8qaf1l0w0hrs";
};
preInstall = "
ensureDir $out/man/man{1,8} $out/sbin $out/bin
";
meta = {
description = "Netkit TFTP client and server";
homepage = "ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/";
license = "BSD";
};
}

View File

@ -1063,6 +1063,11 @@ let
inherit fetchurl stdenv;
};
netkittftp = import ../tools/networking/netkit/tftp {
inherit fetchurl stdenv;
};
netpbm = import ../tools/graphics/netpbm {
inherit stdenv fetchsvn libjpeg libpng zlib flex perl libxml2;
};