Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
55 lines
1.0 KiB
Nix
55 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
arduino-cli,
|
|
ruby,
|
|
python3,
|
|
}:
|
|
|
|
let
|
|
|
|
runtimePath = lib.makeBinPath [
|
|
arduino-cli
|
|
python3 # required by the esp8266 core
|
|
];
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "arduino-ci";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pololu";
|
|
repo = "arduino-ci";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-9RbBxgwsSQ7oGGKr1Vsn9Ug9AsacoRgvQgd9jbRQ034=";
|
|
};
|
|
|
|
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 lib; {
|
|
description = "CI for Arduino Libraries";
|
|
mainProgram = "arduino-ci";
|
|
homepage = src.meta.homepage;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ryantm ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|