dogedns: 0.2.6 -> 0.2.8 (#340101)
[NixPkgs.git] / pkgs / development / octave-modules / optics / default.nix
blobc72df5c360a4334401f3f75da37a34939480114b
2   buildOctavePackage,
3   lib,
4   fetchurl,
5 }:
7 buildOctavePackage rec {
8   pname = "optics";
9   version = "0.1.4";
11   src = fetchurl {
12     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
13     sha256 = "1d9z82241a1zmr8m1vgw10pyk81vn0q4dcyx7d05pigfn5gykrgc";
14   };
16   meta = with lib; {
17     homepage = "https://octave.sourceforge.io/optics/index.html";
18     license = licenses.gpl3Plus;
19     maintainers = with maintainers; [ KarlJoad ];
20     description = "Functions covering various aspects of optics";
21   };