stm32cubemx: 5.3.0 -> 5.6.1

This commit is contained in:
Justin Gerhardt 2020-07-16 01:54:41 -04:00
parent 891e3cb973
commit 2370ca0b26

View File

@ -1,7 +1,7 @@
{ stdenv, requireFile, makeDesktopItem, libicns, imagemagick, zstd, jre }: { stdenv, requireFile, makeDesktopItem, libicns, imagemagick, jre, fetchzip }:
let let
version = "5.3.0"; version = "5.6.1";
desktopItem = makeDesktopItem { desktopItem = makeDesktopItem {
name = "stm32CubeMX"; name = "stm32CubeMX";
exec = "stm32cubemx"; exec = "stm32cubemx";
@ -14,32 +14,19 @@ stdenv.mkDerivation rec {
pname = "stm32cubemx"; pname = "stm32cubemx";
inherit version; inherit version;
src = requireFile rec {
name = "STM32CubeMX.tar.zst";
message = ''
Unfortunately, we cannot download file ${name} automatically.
Please proceed with the following steps to download and add it to the Nix
store yourself:
1. get en.STM32CubeMX_${builtins.replaceStrings ["."] ["-"] version}.zip src = fetchzip {
2. unzip en.STM32CubeMX_${builtins.replaceStrings ["."] ["-"] version}.zip url = "https://sw-center.st.com/packs/resource/library/stm32cube_mx_v${builtins.replaceStrings ["."] [""] version}.zip";
3. run the setup: java -jar SetupSTM32CubeMX-${version}.exe sha256 = "1y4a340wcjl88kjw1f1x85ffp4b5g1psryn9mgkd717w2bfpf29l";
4. create a tar from created folder: tar --zstd -cf ${name} STM32CubeMX stripRoot= false;
5. add the result to the store: nix-prefetch-url file://\$PWD/${name}
Notice: The setup will quit with an error about /bin/chmod
'';
sha256 = "1r5k5wmsvw1w2nfs3nb4gc6pb3j0x6bqljn9jzc4r8y5bxc34rr8";
}; };
nativeBuildInputs = [ libicns imagemagick zstd ]; nativeBuildInputs = [ libicns imagemagick ];
buildCommand = '' buildCommand = ''
mkdir -p $out/{bin,opt,share/applications} mkdir -p $out/{bin,opt/STM32CubeMX,share/applications}
cp -r $src/. $out/opt/STM32CubeMX/
tar --extract --zstd --file $src --directory $out/opt/
chmod +rx $out/opt/STM32CubeMX/STM32CubeMX.exe chmod +rx $out/opt/STM32CubeMX/STM32CubeMX.exe
cat << EOF > $out/bin/${pname} cat << EOF > $out/bin/${pname}
#!${stdenv.shell} #!${stdenv.shell}
${jre}/bin/java -jar $out/opt/STM32CubeMX/STM32CubeMX.exe ${jre}/bin/java -jar $out/opt/STM32CubeMX/STM32CubeMX.exe
@ -63,7 +50,8 @@ stdenv.mkDerivation rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = '' description = "A graphical tool for configuring STM32 microcontrollers and microprocessors";
longDescription = ''
A graphical tool that allows a very easy configuration of STM32 A graphical tool that allows a very easy configuration of STM32
microcontrollers and microprocessors, as well as the generation of the microcontrollers and microprocessors, as well as the generation of the
corresponding initialization C code for the Arm® Cortex®-M core or a corresponding initialization C code for the Arm® Cortex®-M core or a