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

33 lines
835 B
Nix
Raw Normal View History

{ stdenv, lib, 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-08 23:38:31 +00: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 = with lib; {
2019-01-30 22:19:37 +00:00
description = "Makefile for Arduino sketches";
homepage = "https://github.com/sudar/Arduino-Makefile";
license = licenses.lgpl21;
maintainers = [ maintainers.eyjhb ];
platforms = platforms.unix;
2019-01-30 22:19:37 +00:00
};
}