gcc-arm-embedded: unify gcc-arm-embedded/{6,7,8,9}/default.nix

This commit is contained in:
Pavol Rusnak 2019-12-01 18:42:16 +01:00
parent ab1c848f16
commit fcba6a0619
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
4 changed files with 79 additions and 74 deletions

View File

@ -1,22 +1,26 @@
{ stdenv, fetchurl, ncurses5, python27 }: { stdenv
, fetchurl
, ncurses5
, python27
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gcc-arm-embedded"; pname = "gcc-arm-embedded";
version = "6-2017-q2-update"; version = "6-2017-q2-update";
subdir = "6-2017q2"; subdir = "6-2017q2";
src = suffix = {
if stdenv.isLinux then x86_64-darwin = "mac";
fetchurl { x86_64-linux = "linux";
url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-linux.tar.bz2"; }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
sha256="1hvwi02mx34al525sngnl0cm7dkmzxfkb1brq9kvbv28wcplp3p6";
} src = fetchurl {
else if stdenv.isDarwin then url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-${suffix}.tar.bz2";
fetchurl { sha256 = {
url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-mac.tar.bz2"; x86_64-darwin = "0019ylpq4inq7p5gydpmc9m8ni72fz2csrjlqmgx1698998q0c3x";
sha256="0019ylpq4inq7p5gydpmc9m8ni72fz2csrjlqmgx1698998q0c3x"; x86_64-linux = "1hvwi02mx34al525sngnl0cm7dkmzxfkb1brq9kvbv28wcplp3p6";
} }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
else throw "unsupported platform"; };
phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
@ -37,11 +41,11 @@ stdenv.mkDerivation rec {
done done
''; '';
meta = { meta = with stdenv.lib; {
description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors (Cortex-M0/M0+/M3/M4/M7, Cortex-R4/R5/R7/R8)"; description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors";
homepage = https://developer.arm.com/open-source/gnu-toolchain/gnu-rm; homepage = "https://developer.arm.com/open-source/gnu-toolchain/gnu-rm";
license = with stdenv.lib.licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ]; license = with licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ];
maintainers = with stdenv.lib.maintainers; [ vinymeuh ]; maintainers = with maintainers; [ prusnak ];
platforms = with stdenv.lib.platforms; linux ++ darwin; platforms = [ "x86_64-linux" "x86_64-darwin" ];
}; };
} }

View File

@ -1,24 +1,26 @@
{ stdenv, lib, fetchurl, ncurses5, python27 }: { stdenv
, fetchurl
with lib; , ncurses5
, python27
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gcc-arm-embedded"; pname = "gcc-arm-embedded";
version = "7-2018-q2-update"; version = "7-2018-q2-update";
subdir = "7-2018q2"; subdir = "7-2018q2";
src = suffix = {
if stdenv.isLinux then x86_64-darwin = "mac";
fetchurl { x86_64-linux = "linux";
url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-linux.tar.bz2"; }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
sha256="0sgysp3hfpgrkcbfiwkp0a7ymqs02khfbrjabm52b5z61sgi05xv";
} src = fetchurl {
else if stdenv.isDarwin then url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-${suffix}.tar.bz2";
fetchurl { sha256 = {
url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-mac.tar.bz2"; x86_64-darwin = "0nc7m0mpa39qyhfyydxkkyqm7spfc27xf6ygi2vd2aym4r9azi61";
sha256="0nc7m0mpa39qyhfyydxkkyqm7spfc27xf6ygi2vd2aym4r9azi61"; x86_64-linux = "0sgysp3hfpgrkcbfiwkp0a7ymqs02khfbrjabm52b5z61sgi05xv";
} }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
else throw "unsupported platform"; };
phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
@ -39,11 +41,11 @@ stdenv.mkDerivation rec {
done done
''; '';
meta = { meta = with stdenv.lib; {
description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors (Cortex-M0/M0+/M3/M4/M7, Cortex-R4/R5/R7/R8)"; description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors";
homepage = https://developer.arm.com/open-source/gnu-toolchain/gnu-rm; homepage = "https://developer.arm.com/open-source/gnu-toolchain/gnu-rm";
license = with licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ]; license = with licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ];
maintainers = with maintainers; [ prusnak ]; maintainers = with maintainers; [ prusnak ];
platforms = platforms.linux; platforms = [ "x86_64-linux" "x86_64-darwin" ];
}; };
} }

View File

@ -1,24 +1,26 @@
{ stdenv, lib, fetchurl, ncurses5, python27 }: { stdenv
, fetchurl
with lib; , ncurses5
, python27
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gcc-arm-embedded"; pname = "gcc-arm-embedded";
version = "8-2019-q3-update"; version = "8-2019-q3-update";
subdir = "8-2019q3/RC1.1"; subdir = "8-2019q3/RC1.1";
src = suffix = {
if stdenv.isLinux then x86_64-darwin = "mac";
fetchurl { x86_64-linux = "linux";
url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-linux.tar.bz2"; }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
sha256="b50b02b0a16e5aad8620e9d7c31110ef285c1dde28980b1a9448b764d77d8f92";
} src = fetchurl {
else if stdenv.isDarwin then url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-${suffix}.tar.bz2";
fetchurl { sha256 = {
url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-mac.tar.bz2"; x86_64-darwin = "fc235ce853bf3bceba46eff4b95764c5935ca07fc4998762ef5e5b7d05f37085";
sha256="fc235ce853bf3bceba46eff4b95764c5935ca07fc4998762ef5e5b7d05f37085"; x86_64-linux = "b50b02b0a16e5aad8620e9d7c31110ef285c1dde28980b1a9448b764d77d8f92";
} }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
else throw "unsupported platform"; };
phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
@ -39,11 +41,11 @@ stdenv.mkDerivation rec {
done done
''; '';
meta = { meta = with stdenv.lib; {
description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors (Cortex-M0/M0+/M3/M4/M7, Cortex-R4/R5/R7/R8)"; description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors";
homepage = https://developer.arm.com/open-source/gnu-toolchain/gnu-rm; homepage = "https://developer.arm.com/open-source/gnu-toolchain/gnu-rm";
license = with licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ]; license = with licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ];
maintainers = with maintainers; [ prusnak ]; maintainers = with maintainers; [ prusnak ];
platforms = platforms.linux; platforms = [ "x86_64-linux" "x86_64-darwin" ];
}; };
} }

View File

@ -9,23 +9,20 @@ stdenv.mkDerivation rec {
version = "9-2019-q4-major"; version = "9-2019-q4-major";
subdir = "9-2019q4/RC2.1"; subdir = "9-2019q4/RC2.1";
src = suffix = {
if stdenv.system == "x86_64-linux" then aarch64-linux = "aarch64-linux";
fetchurl { x86_64-darwin = "mac";
url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-x86_64-linux.tar.bz2"; x86_64-linux = "x86_64-linux";
sha256="bcd840f839d5bf49279638e9f67890b2ef3a7c9c7a9b25271e83ec4ff41d177a"; }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
}
else if stdenv.system == "aarch64-linux" then src = fetchurl {
fetchurl { url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-${suffix}.tar.bz2";
url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-aarch64-linux.tar.bz2"; sha256 = {
sha256="1f5b9309006737950b2218250e6bb392e2d68d4f1a764fe66be96e2a78888d83"; aarch64-linux = "1f5b9309006737950b2218250e6bb392e2d68d4f1a764fe66be96e2a78888d83";
} x86_64-darwin = "1249f860d4155d9c3ba8f30c19e7a88c5047923cea17e0d08e633f12408f01f0";
else if stdenv.system == "x86_64-darwin" then x86_64-linux = "bcd840f839d5bf49279638e9f67890b2ef3a7c9c7a9b25271e83ec4ff41d177a";
fetchurl { }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
url = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/${subdir}/gcc-arm-none-eabi-${version}-mac.tar.bz2"; };
sha256="1249f860d4155d9c3ba8f30c19e7a88c5047923cea17e0d08e633f12408f01f0";
}
else throw "unsupported platform";
phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; phases = [ "unpackPhase" "installPhase" "fixupPhase" ];