about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/embedded/arduino/arduino-ci/default.nix
blob: b711f814fd7833bad61a46c1b9fb957b021872f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ 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;
  };
}