forked from mirrors/nixpkgs
parent
ffd4d3301f
commit
6c516346f6
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, autoconf, bison, boost, flex, texinfo, gputils ? null
|
||||
{ stdenv, fetchurl, autoconf, bison, boost, flex, texinfo, zlib, gputils ? null
|
||||
, excludePorts ? [] }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
@ -10,14 +10,14 @@ in
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sdcc-${version}";
|
||||
version = "3.7.0";
|
||||
version = "3.8.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/sdcc/sdcc-src-${version}.tar.bz2";
|
||||
sha256 = "13llvx0j3v5qa7qd4fh7nix4j3alpd3ccprxvx163c4q8q4lfkc5";
|
||||
sha256 = "08dvvdxd99hb50wvs8m986v3scfj1rdjw18js7pk5n3vxf6nccdk";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf bison boost flex gputils texinfo ];
|
||||
buildInputs = [ autoconf bison boost flex gputils texinfo zlib ];
|
||||
|
||||
configureFlags = map (f: "--disable-${f}-port") excludedPorts;
|
||||
|
||||
|
|
Loading…
Reference in a new issue