From 8b87ac3eebc7e6e68ee82b1246ffa9a013248de9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 3 Feb 2009 19:36:56 +0000 Subject: [PATCH] GNU Binutils 2.19.1. svn path=/nixpkgs/branches/stdenv-updates/; revision=13975 --- pkgs/development/tools/misc/binutils/default.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix index 7a2b3e116a3..5bf14919f85 100644 --- a/pkgs/development/tools/misc/binutils/default.nix +++ b/pkgs/development/tools/misc/binutils/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, noSysDirs}: stdenv.mkDerivation rec { - name = "binutils-2.19"; + name = "binutils-2.19.1"; src = fetchurl { url = "mirror://gnu/binutils/${name}.tar.bz2"; - sha256 = "12jjvb9p9j59a46glxy15ff5h4i2s3izpx05gf8jmxibzh7s2bmx"; + sha256 = "1xirhxwc94bk6hn2k6i5ly4knbcjsqgy2lp7kl1s5q5csys2b0iy"; }; patches = [ @@ -29,6 +29,13 @@ stdenv.mkDerivation rec { meta = { description = "GNU Binutils, tools for manipulating binaries (linker, assembler, etc.)"; + longDescription = '' + The GNU Binutils are a collection of binary tools. The main + ones are `ld' (the GNU linker) and `as' (the GNU assembler). + They also include the BFD (Binary File Descriptor) library, + `gprof', `nm', `strip', etc. + ''; + homepage = http://www.gnu.org/software/binutils/; license = "GPLv3+";