sdcc: bump 3.3.0 -> 3.4.0

This new sdcc doesn't need older boost, so switch to nixpkgs default
version (currently 1.55).
This commit is contained in:
Bjørn Forsman 2014-04-13 19:39:32 +02:00
parent a555ee2412
commit 99afbf9e91
2 changed files with 3 additions and 5 deletions

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl, bison, flex, boost, gputils ? null }:
stdenv.mkDerivation rec {
version = "3.3.0";
version = "3.4.0";
name = "sdcc-${version}";
src = fetchurl {
url = "mirror://sourceforge/sdcc/sdcc-src-${version}.tar.bz2";
sha256 = "1pj4hssvq34vbryvxc2jpp2b14cgxp695ygwiax6b7l2kvr62gw7";
sha256 = "1yavxffqdfhdyabdza936xxh9wq4cfwa385g26gjapsdp5ighsng";
};
# TODO: remove this comment when gputils != null is tested

View file

@ -3153,9 +3153,7 @@ let
scala_2_10 = callPackage ../development/compilers/scala { };
scala = scala_2_10;
sdcc = callPackage ../development/compilers/sdcc {
boost = boost149; # sdcc 3.2.0 fails to build with boost 1.53
};
sdcc = callPackage ../development/compilers/sdcc { };
smlnj = callPackage_i686 ../development/compilers/smlnj { };