octave.pkgs.econometrics: init at 1.1.2
This commit is contained in:
parent
4e3c4288c9
commit
726a17cf88
2 changed files with 28 additions and 0 deletions
26
pkgs/development/octave-modules/econometrics/default.nix
Normal file
26
pkgs/development/octave-modules/econometrics/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ buildOctavePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
, optim
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "econometrics";
|
||||
version = "1.1.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "1srx78k90ycla7yisa9h593n9l8br31lsdxlspra8sxiyq0sbk72";
|
||||
};
|
||||
|
||||
requiredOctavePackages = [
|
||||
optim
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://octave.sourceforge.io/econometrics/index.html";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ KarlJoad ];
|
||||
description = "Econometrics functions including MLE and GMM based techniques";
|
||||
};
|
||||
}
|
|
@ -81,6 +81,8 @@ makeScope newScope (self:
|
|||
|
||||
doctest = callPackage ../development/octave-modules/doctest { };
|
||||
|
||||
econometrics = callPackage ../development/octave-modules/econometrics { };
|
||||
|
||||
general = callPackage ../development/octave-modules/general {
|
||||
nettle = pkgs.nettle;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue