1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 22:49:47 -04:00
nixpkgs/pkgs/development/tools/misc/stm32flash/default.nix
Moritz Ulrich 36fca94805
Fix some issues in my packages reported by nixpkgs-lint.
Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
2013-09-26 20:03:57 +00:00

25 lines
700 B
Nix

{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation {
name = "stm32flash-1.0";
src = fetchurl {
url = https://stm32flash.googlecode.com/files/stm32flash.tar.gz;
sha256 = "04k631g9lzvp9xr4sw51xpq1g542np61s1l8fpwx9rbsc8m5l0i6";
};
installPhase = ''
# Manually copy, make install copies to /usr/local/bin
mkdir -pv $out/bin/
cp stm32flash $out/bin/
'';
meta = with stdenv.lib; {
description = "Open source flash program for the STM32 ARM processors using the ST bootloader";
homepage = https://code.google.com/p/stm32flash/;
license = "GPLv2";
platforms = platforms.all; # Should work on all platforms
maintainers = [ maintainers.the-kenny ];
};
}