Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2bb504e1f5cc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f654cad7c855
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Dec 16, 2020

  1. arduino-ci: 0.1.0 -> 0.2.0

    ryantm committed Dec 16, 2020
    Copy the full SHA
    e47b3c0 View commit details

Commits on Dec 17, 2020

  1. Merge pull request #107073 from ryantm/arduino-ci

    arduino-ci: 0.1.0 -> 0.2.0
    ryantm authored Dec 17, 2020
    Copy the full SHA
    f654cad View commit details
Showing with 4 additions and 5 deletions.
  1. +4 −5 pkgs/development/arduino/arduino-ci/default.nix
9 changes: 4 additions & 5 deletions pkgs/development/arduino/arduino-ci/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
{ stdenv, fetchFromGitHub, makeWrapper, arduino-cli, ruby, python3, patchelf }:
{ stdenv, fetchFromGitHub, makeWrapper, arduino-cli, ruby, python3 }:

let

runtimePath = stdenv.lib.makeBinPath [
arduino-cli
(python3.withPackages (ps: [ ps.pyserial ])) # required by esp32 core
patchelf # required by esp32 core
python3 # required by the esp8266 core
];

in
stdenv.mkDerivation rec {
pname = "arduino-ci";
version = "0.1.0";
version = "0.2.0";

src = fetchFromGitHub {
owner = "pololu";
repo = "arduino-ci";
rev = "v${version}";
sha256 = "sha256-uLCLupzJ446WcxXZtzJk1wnae+k1NTSy0cGHLqW7MZU=";
sha256 = "sha256-9RbBxgwsSQ7oGGKr1Vsn9Ug9AsacoRgvQgd9jbRQ034=";
};

nativeBuildInputs = [ makeWrapper ];