0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

arduino-ci, arduino-cli, arduino-core, arduino-mk, ino: move arduino/ directory to pkgs/development/embedded/

This commit is contained in:
Pooya Moradi 2021-08-14 19:06:53 +04:30
parent ff1c9635cb
commit 9f62ba081e
7 changed files with 5 additions and 5 deletions

View file

@ -0,0 +1,55 @@
{ lib, stdenv, buildGoModule, fetchFromGitHub, buildFHSUserEnv }:
let
pkg = buildGoModule rec {
pname = "arduino-cli";
version = "0.18.1";
src = fetchFromGitHub {
owner = "arduino";
repo = pname;
rev = version;
sha256 = "sha256-EtkONrP/uaetsdC47WsyQOE71Gsz0wKUiTiYThj8Kq8=";
};
subPackages = [ "." ];
vendorSha256 = "sha256-kPIhG6lsH+0IrYfdlzdv/X/cUQb22Xza9Q6ywjKae/4=";
doCheck = false;
buildFlagsArray = [
"-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'" ];
meta = with lib; {
inherit (src.meta) homepage;
description = "Arduino from the command line";
license = licenses.gpl3Only;
maintainers = with maintainers; [ ryantm ];
};
};
in
if stdenv.isLinux then
# buildFHSUserEnv 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
buildFHSUserEnv
{
inherit (pkg) name meta;
runScript = "${pkg.outPath}/bin/arduino-cli";
extraInstallCommands = ''
mv $out/bin/$name $out/bin/arduino-cli
'';
targetPkgs = pkgs: with pkgs; [
zlib
];
}
else
pkg