nixpkgs/pkgs/development/tools/misc/teensy-loader-cli/default.nix
2019-08-17 10:54:38 +00:00

28 lines
732 B
Nix

{ stdenv, libusb, fetchgit }:
let
version = "2.1";
in
stdenv.mkDerivation {
pname = "teensy-loader-cli";
inherit version;
src = fetchgit {
url = "git://github.com/PaulStoffregen/teensy_loader_cli.git";
rev = "f5b6d7aafda9a8b014b4bb08660833ca45c136d2";
sha256 = "1a663bv3lvm7bsf2wcaj2c0vpmniak7w5hwix5qgz608bvm2v781";
};
buildInputs = [ libusb ];
installPhase = ''
install -Dm755 teensy_loader_cli $out/bin/teensy-loader-cli
'';
meta = with stdenv.lib; {
license = licenses.gpl3;
description = "Firmware uploader for the Teensy microcontroller boards";
homepage = https://www.pjrc.com/teensy/;
maintainers = with maintainers; [ the-kenny ];
platforms = platforms.unix;
};
}