nixpkgs/pkgs/development/octave-modules/arduino/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
811 B
Nix
Raw Normal View History

2021-01-06 16:34:49 +00:00
{ buildOctavePackage
, lib
, fetchurl
, instrument-control
, arduino-core-unwrapped
2021-01-06 16:34:49 +00:00
}:
buildOctavePackage rec {
pname = "arduino";
version = "0.10.0";
2021-01-06 16:34:49 +00:00
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "sha256-p9SDTXkIwnrkNXeVhzAHks7EL4NdwBokrH2j9hqAJqQ=";
2021-01-06 16:34:49 +00:00
};
requiredOctavePackages = [
instrument-control
];
propagatedBuildInputs = [
arduino-core-unwrapped
2021-01-06 16:34:49 +00:00
];
meta = with lib; {
name = "Octave Arduino Toolkit";
homepage = "https://octave.sourceforge.io/arduino/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Basic Octave implementation of the matlab arduino extension, allowing communication to a programmed arduino board to control its hardware";
};
}