2019-01-10 11:30:42 +00:00
|
|
|
{ stdenv, lib, fetchurl, ncurses5, python27 }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gcc-arm-embedded";
|
2019-08-27 19:03:38 +01:00
|
|
|
version = "8-2019-q3-update";
|
|
|
|
subdir = "8-2019q3/RC1.1";
|
2019-01-10 11:30:42 +00:00
|
|
|
|
2019-03-28 17:15:38 +00:00
|
|
|
src =
|
|
|
|
if stdenv.isLinux then
|
|
|
|
fetchurl {
|
|
|
|
url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-linux.tar.bz2";
|
2019-08-27 19:03:38 +01:00
|
|
|
sha256="b50b02b0a16e5aad8620e9d7c31110ef285c1dde28980b1a9448b764d77d8f92";
|
2019-03-28 17:15:38 +00:00
|
|
|
}
|
|
|
|
else if stdenv.isDarwin then
|
|
|
|
fetchurl {
|
|
|
|
url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-mac.tar.bz2";
|
2019-08-27 19:03:38 +01:00
|
|
|
sha256="fc235ce853bf3bceba46eff4b95764c5935ca07fc4998762ef5e5b7d05f37085";
|
2019-03-28 17:15:38 +00:00
|
|
|
}
|
|
|
|
else throw "unsupported platform";
|
2019-01-10 11:30:42 +00:00
|
|
|
|
|
|
|
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -r * $out
|
2019-01-18 23:46:16 +00:00
|
|
|
ln -s $out/share/doc/gcc-arm-none-eabi/man $out/man
|
2019-01-10 11:30:42 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
dontPatchELF = true;
|
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
find $out -type f | while read f; do
|
|
|
|
patchelf $f > /dev/null 2>&1 || continue
|
|
|
|
patchelf --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) "$f" || true
|
|
|
|
patchelf --set-rpath ${stdenv.lib.makeLibraryPath [ "$out" stdenv.cc.cc ncurses5 python27 ]} "$f" || true
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors (Cortex-M0/M0+/M3/M4/M7, Cortex-R4/R5/R7/R8)";
|
|
|
|
homepage = https://developer.arm.com/open-source/gnu-toolchain/gnu-rm;
|
|
|
|
license = with licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ];
|
|
|
|
maintainers = with maintainers; [ prusnak ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|