From 6646f2e8e10c9e66d1d83590fdc217be2ecf269e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 30 Jan 2009 23:38:02 +0000 Subject: [PATCH] GNU Inetutils 1.6. svn path=/nixpkgs/trunk/; revision=13920 --- pkgs/tools/networking/inetutils/default.nix | 22 ++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/tools/networking/inetutils/default.nix b/pkgs/tools/networking/inetutils/default.nix index e276ec10aa4..caa91bdbe4b 100644 --- a/pkgs/tools/networking/inetutils/default.nix +++ b/pkgs/tools/networking/inetutils/default.nix @@ -1,18 +1,13 @@ {stdenv, fetchurl}: stdenv.mkDerivation rec { - name = "inetutils-1.5"; + name = "inetutils-1.6"; + src = fetchurl { url = "mirror://gnu/inetutils/${name}.tar.gz"; - sha256 = "048my5fgxnjwr1jcka8yq36c7i019p60r0mg4f6zz96pmys76p1l"; + sha256 = "1pjv2h8mwbyjrw75xn1k1z7ps4z4y0x6ljizwrzkh83n7d3xjaq5"; }; - # 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. @@ -20,9 +15,14 @@ stdenv.mkDerivation rec { ''; meta = { - description = ''GNU Inetutils is a collection of common network - programs, including telnet, FTP, RSH, rlogin and - TFTP clients and servers, among others.''; + description = "GNU Inetutils, a collection of common network programs"; + + longDescription = '' + 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+"; };