1{
2 buildOctavePackage,
3 lib,
4 fetchurl,
5}:
6
7buildOctavePackage rec {
8 pname = "optics";
9 version = "0.1.4";
10
11 src = fetchurl {
12 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
13 sha256 = "1d9z82241a1zmr8m1vgw10pyk81vn0q4dcyx7d05pigfn5gykrgc";
14 };
15
16 meta = {
17 homepage = "https://gnu-octave.github.io/packages/optics/";
18 license = lib.licenses.gpl3Plus;
19 maintainers = with lib.maintainers; [ KarlJoad ];
20 description = "Functions covering various aspects of optics";
21 };
22}