Commit 71bf4445 authored by Lluís Batlle i Rossell's avatar Lluís Batlle i Rossell
Browse files

Updating uclibc (This new release fixed a problem in ._start that gave me a lot

of headache in mips)

svn path=/nixpkgs/trunk/; revision=20613
parent 2a24a1f3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -23,12 +23,12 @@ let
    crossMakeFlag = if (cross != null) then "CROSS=${cross.config}-" else "";
in
stdenv.mkDerivation {
  name = "uclibc-0.9.30.2" + stdenv.lib.optionalString (cross != null)
  name = "uclibc-0.9.30.3" + stdenv.lib.optionalString (cross != null)
    ("-" + cross.config);

  src = fetchurl {
    url = http://www.uclibc.org/downloads/uClibc-0.9.30.2.tar.bz2;
    sha256 = "0wr4hlybssiyswdc73wdcxr31xfbss3lnqiv5lcav3rg3v4r4vmb";
    url = http://www.uclibc.org/downloads/uClibc-0.9.30.3.tar.bz2;
    sha256 = "0f1fpdwampbw7pf79i64ipj0azk4kbc9wl81ynlp19p92k4klz0h";
  };

  configurePhase = ''