gcc-arm-embedded: update license

According to https://launchpad.net/gcc-arm-embedded:
> Licence:
> Simplified BSD Licence, GNU GPL v2, GNU GPL v3, GNU LGPL v2.1, GNU
> LGPL v3, MIT / X / Expat Licence
This commit is contained in:
Alexey Shmalko 2016-07-19 13:00:03 +03:00 committed by Bjørn Forsman
parent 486445169f
commit 34b5d283cd

View File

@ -22,11 +22,11 @@ stdenv.mkDerivation {
};
buildInputs = [ bzip2 patchelf ];
dontPatchELF = true;
phases = "unpackPhase patchPhase installPhase";
installPhase = ''
mkdir -pv $out
cp -r ./* $out
@ -42,8 +42,9 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "Pre-built GNU toolchain from ARM Cortex-M & Cortex-R processors (Cortex-M0/M0+/M3/M4, Cortex-R4/R5/R7)";
homepage = "https://launchpad.net/gcc-arm-embedded";
license = licenses.gpl3;
homepage = https://launchpad.net/gcc-arm-embedded;
license = with licenses; [ bsd2 gpl2 gpl3 lgpl21 lgpl3 mit ];
maintainers = [ maintainers.rasendubi ];
platforms = platforms.linux;
};
}