nixpkgs/pkgs/development/misc/msp430/newlib.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
577 B
Nix
Raw Normal View History

{ stdenvNoCC, xorg, newlib, msp430GccSupport }:
2019-03-26 05:12:52 +00:00
stdenvNoCC.mkDerivation {
name = "msp430-${newlib.name}";
inherit newlib;
inherit msp430GccSupport;
preferLocalBuild = true;
allowSubstitutes = false;
2019-03-26 05:12:52 +00:00
buildCommand = ''
mkdir $out
${xorg.lndir}/bin/lndir -silent $newlib $out
${xorg.lndir}/bin/lndir -silent $msp430GccSupport/include $out/${newlib.incdir}
${xorg.lndir}/bin/lndir -silent $msp430GccSupport/lib $out/${newlib.libdir}
2019-03-26 05:12:52 +00:00
'';
passthru = {
inherit (newlib) incdir libdir;
};
2019-03-26 05:12:52 +00:00
meta = {
platforms = [ "msp430-none" ];
};
}