94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
97 lines
2.4 KiB
Nix
97 lines
2.4 KiB
Nix
{ lib, stdenv, buildGoModule, fetchFromGitHub, buildFHSEnv, installShellFiles, go-task }:
|
|
|
|
let
|
|
|
|
pkg = buildGoModule rec {
|
|
pname = "arduino-cli";
|
|
version = "0.32.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "arduino";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-Em8L2ZYS1rgW46/MP5hs/EBWGcb5GP3EDEzWi072F/I=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
go-task
|
|
];
|
|
|
|
subPackages = [ "." ];
|
|
|
|
vendorSha256 = "sha256-+5Cj6wdX25fK+Y9czTwRRqCdY+0iarvii9nD3QMDh+c=";
|
|
|
|
postPatch = let
|
|
skipTests = [
|
|
# tries to "go install"
|
|
"TestDummyMonitor"
|
|
# try to Get "https://downloads.arduino.cc/libraries/library_index.tar.bz2"
|
|
"TestDownloadAndChecksums"
|
|
"TestParseArgs"
|
|
"TestParseReferenceCores"
|
|
"TestPlatformSearch"
|
|
"TestPlatformSearchSorting"
|
|
];
|
|
in ''
|
|
substituteInPlace Taskfile.yml \
|
|
--replace "go test" "go test -p $NIX_BUILD_CORES -skip '(${lib.concatStringsSep "|" skipTests})'"
|
|
'';
|
|
|
|
doCheck = stdenv.isLinux;
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
task go:test
|
|
runHook postCheck
|
|
'';
|
|
|
|
ldflags = [
|
|
"-s" "-w" "-X github.com/arduino/arduino-cli/version.versionString=${version}" "-X github.com/arduino/arduino-cli/version.commit=unknown"
|
|
] ++ lib.optionals stdenv.isLinux [ "-extldflags '-static'" ];
|
|
|
|
postInstall = ''
|
|
export HOME="$(mktemp -d)"
|
|
for s in {bash,zsh,fish}; do
|
|
$out/bin/arduino-cli completion $s > completion.$s
|
|
installShellCompletion --cmd arduino-cli --$s completion.$s
|
|
done
|
|
unset HOME
|
|
'';
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Arduino from the command line";
|
|
changelog = "https://github.com/arduino/arduino-cli/releases/tag/${version}";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ ryantm ];
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
if stdenv.isLinux then
|
|
# buildFHSEnv is needed because the arduino-cli downloads compiler
|
|
# toolchains from the internet that have their interpreters pointed at
|
|
# /lib64/ld-linux-x86-64.so.2
|
|
buildFHSEnv
|
|
{
|
|
inherit (pkg) name meta;
|
|
|
|
runScript = "${pkg.outPath}/bin/arduino-cli";
|
|
|
|
extraInstallCommands = ''
|
|
mv $out/bin/$name $out/bin/arduino-cli
|
|
cp -r ${pkg.outPath}/share $out/share
|
|
'';
|
|
passthru.pureGoPkg = pkg;
|
|
|
|
targetPkgs = pkgs: with pkgs; [
|
|
zlib
|
|
];
|
|
}
|
|
else
|
|
pkg
|