From a42468954dbd0e04b9acef47b253f62b294ef2cc Mon Sep 17 00:00:00 2001 From: Ryan Mulligan Date: Thu, 3 Dec 2020 18:41:02 -0800 Subject: arduino-ci: init at 0.1.0 arduino-ci allows you to quickly add continuous integration (CI) tests to Arduino libraries. It uses arduino-cli to install dependencies and then it compiles every example with every board. --- pkgs/development/arduino/arduino-ci/default.nix | 46 +++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 pkgs/development/arduino/arduino-ci/default.nix (limited to 'pkgs/development/arduino') diff --git a/pkgs/development/arduino/arduino-ci/default.nix b/pkgs/development/arduino/arduino-ci/default.nix new file mode 100644 index 0000000000000..cdc6cb8ccb612 --- /dev/null +++ b/pkgs/development/arduino/arduino-ci/default.nix @@ -0,0 +1,46 @@ +{ stdenv, fetchFromGitHub, makeWrapper, arduino-cli, ruby, python3, patchelf }: + +let + + runtimePath = stdenv.lib.makeBinPath [ + arduino-cli + (python3.withPackages (ps: [ ps.pyserial ])) # required by esp32 core + patchelf # required by esp32 core + ]; + +in +stdenv.mkDerivation rec { + pname = "arduino-ci"; + version = "0.1.0"; + + src = fetchFromGitHub { + owner = "pololu"; + repo = "arduino-ci"; + rev = "v${version}"; + sha256 = "sha256-uLCLupzJ446WcxXZtzJk1wnae+k1NTSy0cGHLqW7MZU="; + }; + + nativeBuildInputs = [ makeWrapper ]; + + installPhase = '' + runHook preInstall + + mkdir -p $out/bin + install $src/ci.rb $out/bin/arduino-ci + + runHook postInstall + ''; + + fixupPhase = '' + substituteInPlace $out/bin/arduino-ci --replace "/usr/bin/env nix-shell" "${ruby}/bin/ruby" + wrapProgram $out/bin/arduino-ci --prefix PATH ":" "${runtimePath}" + ''; + + meta = with stdenv.lib; { + description = "CI for Arduino Libraries"; + homepage = src.meta.homepage; + license = licenses.mit; + maintainers = with maintainers; [ ryantm ]; + platforms = platforms.unix; + }; +} -- cgit 1.4.1