Merge pull request #193109 from pkharvey/pk/stm8flash
stm8flash: init at 2022-03-27
This commit is contained in:
commit
79cef37b6d
2 changed files with 36 additions and 0 deletions
pkgs
34
pkgs/development/embedded/stm8/stm8flash/default.nix
Normal file
34
pkgs/development/embedded/stm8/stm8flash/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ lib, stdenv, fetchFromGitHub, libusb1, pkg-config }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "stm8flash";
|
||||
version = "2022-03-27";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vdudouyt";
|
||||
repo = "stm8flash";
|
||||
rev = "23305ce5adbb509c5cb668df31b0fd6c8759639c";
|
||||
sha256 = "sha256-fFoC2EKSmYyW2lqrdAh5A2WEtUMCenKse2ySJdNHu6w=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
enableParallelBuilding = true;
|
||||
|
||||
# NOTE: _FORTIFY_SOURCE requires compiling with optimization (-O)
|
||||
NIX_CFLAGS_COMPILE = "-O";
|
||||
|
||||
preBuild = ''
|
||||
export DESTDIR=$out;
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ libusb1 ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/vdudouyt/stm8flash";
|
||||
description = "A tool for flashing STM8 MCUs via ST-LINK (V1 and V2)";
|
||||
maintainers = with maintainers; [ pkharvey ];
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -17399,6 +17399,8 @@ with pkgs;
|
|||
|
||||
stm32flash = callPackage ../development/embedded/stm32/stm32flash { };
|
||||
|
||||
stm8flash = callPackage ../development/embedded/stm8/stm8flash { };
|
||||
|
||||
strace = callPackage ../development/tools/misc/strace { };
|
||||
|
||||
stylua = callPackage ../development/tools/stylua { };
|
||||
|
|
Loading…
Reference in a new issue