sdcc: update for added gputils, add disabled flag, adopt
This commit is contained in:
parent
9ba3b39e44
commit
f969e426c0
1 changed files with 10 additions and 7 deletions
|
@ -1,5 +1,9 @@
|
||||||
{ stdenv, fetchurl, bison, flex, boost, texinfo, gputils ? null }:
|
{ stdenv, fetchurl, bison, flex, boost, texinfo, autoconf, gputils ? null, disabled ? [] }:
|
||||||
|
let
|
||||||
|
allDisabled = (if gputils == null then [ "pic14" "pic16" ] else []) ++ disabled;
|
||||||
|
# choices: mcs51 z80 z180 r2k r3ka gbz80 tlcs90 ds390 ds400 pic14 pic16 hc08 s08 stm8
|
||||||
|
inherit (stdenv) lib;
|
||||||
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "3.7.0";
|
version = "3.7.0";
|
||||||
name = "sdcc-${version}";
|
name = "sdcc-${version}";
|
||||||
|
@ -9,14 +13,13 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "13llvx0j3v5qa7qd4fh7nix4j3alpd3ccprxvx163c4q8q4lfkc5";
|
sha256 = "13llvx0j3v5qa7qd4fh7nix4j3alpd3ccprxvx163c4q8q4lfkc5";
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: remove this comment when gputils != null is tested
|
buildInputs = [ bison flex boost texinfo gputils autoconf ];
|
||||||
buildInputs = [ bison flex boost texinfo gputils ];
|
|
||||||
|
|
||||||
configureFlags = ''
|
configureFlags = ''
|
||||||
${if gputils == null then "--disable-pic14-port --disable-pic16-port" else ""}
|
${lib.concatMapStringsSep " " (f: "--disable-${f}-port") allDisabled}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "Small Device C Compiler";
|
description = "Small Device C Compiler";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
SDCC is a retargettable, optimizing ANSI - C compiler suite that targets
|
SDCC is a retargettable, optimizing ANSI - C compiler suite that targets
|
||||||
|
@ -29,6 +32,6 @@ stdenv.mkDerivation rec {
|
||||||
homepage = http://sdcc.sourceforge.net/;
|
homepage = http://sdcc.sourceforge.net/;
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.bjornfor ];
|
maintainers = [ maintainers.bjornfor maintainers.yorickvp ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue