mspdebug: init at 0.25
This commit is contained in:
parent
e3f6b08307
commit
bc2c8db7f8
27
pkgs/development/misc/msp430/mspdebug.nix
Normal file
27
pkgs/development/misc/msp430/mspdebug.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, libusb, readline ? null }:
|
||||
|
||||
let
|
||||
version = "0.25";
|
||||
in stdenv.mkDerivation {
|
||||
name = "mspdebug-${version}";
|
||||
src = fetchFromGitHub {
|
||||
owner = "dlbeer";
|
||||
repo = "mspdebug";
|
||||
rev = "v${version}";
|
||||
sha256 = "0prgwb5vx6fd4bj12ss1bbb6axj2kjyriyjxqrzd58s5jyyy8d3c";
|
||||
};
|
||||
|
||||
buildInputs = [ readline libusb ];
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
"INSTALL=install"
|
||||
] ++ (if readline == null then ["WITHOUT_READLINE=1"] else []);
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A free programmer, debugger, and gdb proxy for MSP430 MCUs";
|
||||
homepage = https://dlbeer.co.nz/mspdebug/;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ aerialx ];
|
||||
};
|
||||
}
|
@ -8380,6 +8380,8 @@ in
|
||||
newlib = pkgs.newlibCross;
|
||||
};
|
||||
|
||||
mspdebug = callPackage ../development/misc/msp430/mspdebug.nix { };
|
||||
|
||||
pharo-vms = callPackage ../development/pharo/vm { };
|
||||
pharo = pharo-vms.multi-vm-wrapper;
|
||||
pharo-cog32 = pharo-vms.cog32;
|
||||
|
Loading…
Reference in New Issue
Block a user