mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
* Binutils 2.18.
svn path=/nixpkgs/branches/stdenv-updates/; revision=9656
This commit is contained in:
parent
c8e022a029
commit
3b1aac231b
1 changed files with 3 additions and 3 deletions
|
@ -1,11 +1,11 @@
|
||||||
{stdenv, fetchurl, noSysDirs}:
|
{stdenv, fetchurl, noSysDirs}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "binutils-2.17";
|
name = "binutils-2.18";
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://nix.cs.uu.nl/dist/tarballs/binutils-2.17.tar.bz2;
|
url = mirror://gnu/binutils/binutils-2.18.tar.bz2;
|
||||||
md5 = "e26e2e06b6e4bf3acf1dc8688a94c0d1";
|
sha256 = "16zfc7llbjdn69bbdy7kqgg2xa67ypgj7z5qicgwzvghaaj36yj8";
|
||||||
};
|
};
|
||||||
inherit noSysDirs;
|
inherit noSysDirs;
|
||||||
configureFlags = "--disable-werror"; # needed for dietlibc build
|
configureFlags = "--disable-werror"; # needed for dietlibc build
|
||||||
|
|
Loading…
Reference in a new issue