Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / octave-modules / optics / default.nix
blob1324c6cd4ba3324e0edc5271fd880bd89dfe88cc
1 { buildOctavePackage
2 , lib
3 , fetchurl
4 }:
6 buildOctavePackage rec {
7   pname = "optics";
8   version = "0.1.4";
10   src = fetchurl {
11     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
12     sha256 = "1d9z82241a1zmr8m1vgw10pyk81vn0q4dcyx7d05pigfn5gykrgc";
13   };
15   meta = with lib; {
16     homepage = "https://octave.sourceforge.io/optics/index.html";
17     license = licenses.gpl3Plus;
18     maintainers = with maintainers; [ KarlJoad ];
19     description = "Functions covering various aspects of optics";
20   };