mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
Add GNU Inetutils.
svn path=/nixpkgs/trunk/; revision=10817
This commit is contained in:
parent
4050f8fa45
commit
a21609b1ab
29
pkgs/tools/networking/inetutils/default.nix
Normal file
29
pkgs/tools/networking/inetutils/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "inetutils-1.5";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnu/inetutils/${name}.tar.gz";
|
||||||
|
sha256 = "048my5fgxnjwr1jcka8yq36c7i019p60r0mg4f6zz96pmys76p1l";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Make sure `configure' honors `$TMPDIR' for chroot builds.
|
||||||
|
patchPhase = ''
|
||||||
|
cat configure | sed -'es|/tmp/,iu|$TMPDIR/,iu|g' > ,,tmp && \
|
||||||
|
mv ,,tmp configure && chmod +x configure
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
# XXX: These programs are normally installed setuid but since it
|
||||||
|
# fails, they end up being non-executable, hence this hack.
|
||||||
|
chmod +x $out/bin/{ping,ping6,rcp,rlogin,rsh}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = ''GNU Inetutils is a collection of common network
|
||||||
|
programs, including telnet, FTP, RSH, rlogin and
|
||||||
|
TFTP clients and servers, among others.'';
|
||||||
|
homepage = http://www.gnu.org/software/inetutils/;
|
||||||
|
license = "GPLv3+";
|
||||||
|
};
|
||||||
|
}
|
|
@ -622,6 +622,10 @@ rec {
|
||||||
version = "0.3rc1";
|
version = "0.3rc1";
|
||||||
} null;*/
|
} null;*/
|
||||||
|
|
||||||
|
inetutils = import ../tools/networking/inetutils {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
jdiskreport = import ../tools/misc/jdiskreport {
|
jdiskreport = import ../tools/misc/jdiskreport {
|
||||||
inherit fetchurl stdenv unzip jdk;
|
inherit fetchurl stdenv unzip jdk;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue