octave.pkgs.vibes: init at 0.2.0
This commit is contained in:
parent
455befa378
commit
2c9224cd8f
2 changed files with 45 additions and 0 deletions
39
pkgs/development/octave-modules/vibes/default.nix
Normal file
39
pkgs/development/octave-modules/vibes/default.nix
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -203,4 +203,10 @@ makeScope newScope (self:
|
||||||
|
|
||||||
tsa = callPackage ../development/octave-modules/tsa { };
|
tsa = callPackage ../development/octave-modules/tsa { };
|
||||||
|
|
||||||
|
vibes = callPackage ../development/octave-modules/vibes {
|
||||||
|
vibes = null;
|
||||||
|
# TODO: Need to package vibes:
|
||||||
|
# https://github.com/ENSTABretagneRobotics/VIBES
|
||||||
|
};
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue