Merge pull request #52112 from eyJhb/arduino-mk

arduino-mk: init at 1.6.0
This commit is contained in:
Matthew Bauer 2019-02-03 11:29:00 -05:00 committed by GitHub
commit 43bd6a318e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

@ -0,0 +1,25 @@
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "1.6.0";
name = "arduino-mk-${version}";
src = fetchFromGitHub {
owner = "sudar";
repo = "Arduino-Makefile";
rev = "${version}";
sha256 = "0flpl97d2231gp51n3y4qvf3y1l8xzafi1sgpwc305vwc2h4dl2x";
};
phases = ["installPhase"];
installPhase = "ln -s $src $out";
meta = {
description = "Makefile for Arduino sketches";
homepage = https://github.com/sudar/Arduino-Makefile;
license = stdenv.lib.licenses.lgpl21;
maintainers = [ stdenv.lib.maintainers.eyjhb ];
platforms = stdenv.lib.platforms.unix;
};
}

@ -507,6 +507,8 @@ in
withGui = false;
};
arduino-mk = callPackage ../development/arduino/arduino-mk {};
apitrace = libsForQt5.callPackage ../applications/graphics/apitrace {};
arguments = callPackage ../development/libraries/arguments { };