My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/octave-modules/optics/default.nix

21 lines
514 B

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