arduino-ci: 0.1.0 -> 0.2.0
This commit is contained in:
parent
120a14e6aa
commit
e47b3c0e23
|
@ -1,23 +1,22 @@
|
||||||
{ stdenv, fetchFromGitHub, makeWrapper, arduino-cli, ruby, python3, patchelf }:
|
{ stdenv, fetchFromGitHub, makeWrapper, arduino-cli, ruby, python3 }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
runtimePath = stdenv.lib.makeBinPath [
|
runtimePath = stdenv.lib.makeBinPath [
|
||||||
arduino-cli
|
arduino-cli
|
||||||
(python3.withPackages (ps: [ ps.pyserial ])) # required by esp32 core
|
python3 # required by the esp8266 core
|
||||||
patchelf # required by esp32 core
|
|
||||||
];
|
];
|
||||||
|
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "arduino-ci";
|
pname = "arduino-ci";
|
||||||
version = "0.1.0";
|
version = "0.2.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pololu";
|
owner = "pololu";
|
||||||
repo = "arduino-ci";
|
repo = "arduino-ci";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-uLCLupzJ446WcxXZtzJk1wnae+k1NTSy0cGHLqW7MZU=";
|
sha256 = "sha256-9RbBxgwsSQ7oGGKr1Vsn9Ug9AsacoRgvQgd9jbRQ034=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
Loading…
Reference in New Issue