diff --git a/pkgs/development/compilers/gcc-arm-embedded/default.nix b/pkgs/development/compilers/gcc-arm-embedded/default.nix index 85d8d37b21ce..65c0f2ea1c59 100644 --- a/pkgs/development/compilers/gcc-arm-embedded/default.nix +++ b/pkgs/development/compilers/gcc-arm-embedded/default.nix @@ -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; }; }