mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
octave.pkgs.arduino: init at 0.6.0
This commit is contained in:
parent
76bcbfce46
commit
88f20f352a
33
pkgs/development/octave-modules/arduino/default.nix
Normal file
33
pkgs/development/octave-modules/arduino/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ buildOctavePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
, instrument-control
|
||||
, arduino
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "arduino";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "0fnfk206n31s7diijaylmqhxnr88z6l3l3vsxq4z8gcp9ylm9nkj";
|
||||
};
|
||||
|
||||
requiredOctavePackages = [
|
||||
instrument-control
|
||||
];
|
||||
|
||||
# Might be able to use pkgs.arduino-core
|
||||
propagatedBuildInputs = [
|
||||
arduino
|
||||
];
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
@ -55,8 +55,6 @@ makeScope newScope (self:
|
||||
|
||||
arduino = callPackage ../development/octave-modules/arduino {
|
||||
inherit (pkgs) arduino;
|
||||
# Full arduino right now. Might be able to use pkgs.arduino-core
|
||||
# Needs arduinoIDE as a runtime dependency.
|
||||
};
|
||||
|
||||
audio = callPackage ../development/octave-modules/audio {
|
||||
|
Loading…
Reference in New Issue
Block a user