octave.pkgs.optics: init at 0.1.4

This commit is contained in:
Karl Hallsby 2021-01-06 11:45:58 -06:00 committed by Doron Behar
parent 7913c41c71
commit 25b1e33707
2 changed files with 23 additions and 0 deletions

View file

@ -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";
};
}

View file

@ -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 {