mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
mavproxy: 1.80.70 -> 1.8.71
https://github.com/ArduPilot/MAVProxy/releases/tag/v1.8.71
This commit is contained in:
parent
b418f9bd8a
commit
4d70ac234b
@ -1,14 +1,28 @@
|
|||||||
{ stdenv, lib, buildPythonApplication, fetchPypi, lxml, matplotlib, numpy
|
{ stdenv
|
||||||
, opencv4, pymavlink, pyserial, setuptools, wxpython, billiard
|
, lib
|
||||||
, gnureadline }:
|
, buildPythonApplication
|
||||||
|
, fetchFromGitHub
|
||||||
|
, lxml
|
||||||
|
, matplotlib
|
||||||
|
, numpy
|
||||||
|
, opencv4
|
||||||
|
, pymavlink
|
||||||
|
, pyserial
|
||||||
|
, setuptools
|
||||||
|
, wxpython
|
||||||
|
, billiard
|
||||||
|
, gnureadline
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "MAVProxy";
|
pname = "MAVProxy";
|
||||||
version = "1.8.70";
|
version = "1.8.71";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "ArduPilot";
|
||||||
hash = "sha256-U5K+0lxJbBvwETnJ3MTMkk47CMOSlJBeFrCLHW9OSh8=";
|
repo = pname;
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
hash = "sha256-A7tqV1kBCSuWHJUTdUZGcPY/r7X1edGZs6xDctpMbMI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user