forked from mirrors/nixpkgs
Adding netkit tftp client and server.
svn path=/nixpkgs/trunk/; revision=16780
This commit is contained in:
parent
f474284147
commit
c06da1dce7
20
pkgs/tools/networking/netkit/tftp/default.nix
Normal file
20
pkgs/tools/networking/netkit/tftp/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -1063,6 +1063,11 @@ let
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
netkittftp = import ../tools/networking/netkit/tftp {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
netpbm = import ../tools/graphics/netpbm {
|
netpbm = import ../tools/graphics/netpbm {
|
||||||
inherit stdenv fetchsvn libjpeg libpng zlib flex perl libxml2;
|
inherit stdenv fetchsvn libjpeg libpng zlib flex perl libxml2;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue