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

34 lines
814 B
Nix
Raw Permalink Normal View History

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