summary refs log tree commit diff
path: root/pkgs/development/octave-modules
diff options
context:
space:
mode:
authorKarl Hallsby <karl@hallsby.com>2021-01-06 12:13:10 -0600
committerDoron Behar <doron.behar@gmail.com>2021-02-24 21:00:52 +0200
commit2c9224cd8f4a227936589508833ab4f5b0398151 (patch)
tree1b2bc16b46e843fdcfb82f55e4155c8efe1c8114 /pkgs/development/octave-modules
parent455befa3784d8cceb431a5e9cd8ce06b102513b0 (diff)
downloadnixpkgs-2c9224cd8f4a227936589508833ab4f5b0398151.tar
nixpkgs-2c9224cd8f4a227936589508833ab4f5b0398151.tar.gz
nixpkgs-2c9224cd8f4a227936589508833ab4f5b0398151.tar.bz2
nixpkgs-2c9224cd8f4a227936589508833ab4f5b0398151.tar.lz
nixpkgs-2c9224cd8f4a227936589508833ab4f5b0398151.tar.xz
nixpkgs-2c9224cd8f4a227936589508833ab4f5b0398151.tar.zst
nixpkgs-2c9224cd8f4a227936589508833ab4f5b0398151.zip
octave.pkgs.vibes: init at 0.2.0
Diffstat (limited to 'pkgs/development/octave-modules')
-rw-r--r--pkgs/development/octave-modules/vibes/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/octave-modules/vibes/default.nix b/pkgs/development/octave-modules/vibes/default.nix
new file mode 100644
index 00000000000..f60a5d7339a
--- /dev/null
+++ b/pkgs/development/octave-modules/vibes/default.nix
@@ -0,0 +1,39 @@
+{ buildOctavePackage
+, lib
+, fetchurl
+, vibes
+}:
+
+buildOctavePackage rec {
+  pname = "vibes";
+  version = "0.2.0";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
+    sha256 = "1zn86rcsjkqg67hphz5inxc5xkgr18sby8za68zhppc2z7pd91ng";
+  };
+
+  buildInputs = [
+    vibes
+  ];
+
+  meta = with lib; {
+    homepage = "https://octave.sourceforge.io/vibes/index.html";
+    license = with licenses; [ gpl3Plus mit ];
+    maintainers = with maintainers; [ KarlJoad ];
+    description = "Easily display results (boxes, pavings) from interval methods";
+    longDescription = ''
+      The VIBes API allows one to easily display results (boxes, pavings) from
+      interval methods. VIBes consists in two parts: (1) the VIBes application
+      that features viewing, annotating and exporting figures, and (2) the
+      VIBes API that enables your program to communicate with the viewer in order
+      to draw figures. This package integrates the VIBes API into Octave. The
+      VIBes application is required for operation and must be installed
+      seperately. Data types from third-party interval arithmetic libraries for
+      Octave are also supported.
+    '';
+    # Marked this way until KarlJoad gets around to packaging the vibes program.
+    # https://github.com/ENSTABretagneRobotics/VIBES
+    broken = true;
+  };
+}