summary refs log tree commit diff
path: root/pkgs/development/tools/misc/stm32flash/default.nix
blob: bc33d417f88546fcc9fc192ac0d428553dced31a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "stm32flash";
  version = "0.5";

  src = fetchurl {
    url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
    sha256 = "01p396daqw3zh6nijffbfbwyqza33bi2k4q3m5yjzs02xwi99alp";
  };

  buildFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];

  installPhase = ''
    # Manually copy, make install copies to /usr/local/bin
    mkdir -pv $out/bin/
    cp stm32flash $out/bin/
  '';

  meta = with lib; {
    description = "Open source flash program for the STM32 ARM processors using the ST bootloader";
    homepage = "https://sourceforge.net/projects/stm32flash/";
    license = lib.licenses.gpl2;
    platforms = platforms.all; # Should work on all platforms
    maintainers = with maintainers; [ elitak ];
  };
}