aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/octave-modules/arduino/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/octave-modules/arduino/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/octave-modules/arduino/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/octave-modules/arduino/default.nix b/infra/libkookie/nixpkgs/pkgs/development/octave-modules/arduino/default.nix
new file mode 100644
index 000000000000..f6536108e6cc
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/development/octave-modules/arduino/default.nix
@@ -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";
+ };
+}