octave.pkgs.optics: init at 0.1.4
This commit is contained in:
parent
7913c41c71
commit
25b1e33707
|
@ -0,0 +1,21 @@
|
|||
{ buildOctavePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "optics";
|
||||
version = "0.1.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "1d9z82241a1zmr8m1vgw10pyk81vn0q4dcyx7d05pigfn5gykrgc";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://octave.sourceforge.io/optics/index.html";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ KarlJoad ];
|
||||
description = "Functions covering various aspects of optics";
|
||||
};
|
||||
}
|
|
@ -163,6 +163,8 @@ makeScope newScope (self:
|
|||
|
||||
octproj = callPackage ../development/octave-modules/octproj { };
|
||||
|
||||
optics = callPackage ../development/octave-modules/optics { };
|
||||
|
||||
signal = callPackage ../development/octave-modules/signal { };
|
||||
|
||||
symbolic = callPackage ../development/octave-modules/symbolic {
|
||||
|
|
Loading…
Reference in New Issue