nixpkgs/pkgs/development/arduino/arduino-mk/default.nix

34 lines
854 B
Nix
Raw Normal View History

2020-12-01 09:13:21 +00:00
{ stdenv, fetchFromGitHub, python3Packages, installShellFiles }:
2019-01-30 22:19:37 +00:00
stdenv.mkDerivation rec {
version = "1.6.0";
pname = "arduino-mk";
2019-01-30 22:19:37 +00:00
src = fetchFromGitHub {
owner = "sudar";
repo = "Arduino-Makefile";
2019-09-09 00:38:31 +01:00
rev = version;
2019-01-30 22:19:37 +00:00
sha256 = "0flpl97d2231gp51n3y4qvf3y1l8xzafi1sgpwc305vwc2h4dl2x";
};
2020-12-01 09:13:21 +00:00
nativeBuildInputs = [ python3Packages.wrapPython installShellFiles ];
propagatedBuildInputs = with python3Packages; [ pyserial ];
installPhase = ''
mkdir $out
cp -rT $src $out
installManPage *.1
'';
postFixupPhase = ''
wrapPythonPrograms
'';
2019-01-30 22:19:37 +00:00
meta = {
description = "Makefile for Arduino sketches";
homepage = "https://github.com/sudar/Arduino-Makefile";
2019-01-30 22:19:37 +00:00
license = stdenv.lib.licenses.lgpl21;
maintainers = [ stdenv.lib.maintainers.eyjhb ];
platforms = stdenv.lib.platforms.unix;
};
}