Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildOctavePackage, 3 lib, 4 fetchurl, 5 optim, 6}: 7 8buildOctavePackage rec { 9 pname = "econometrics"; 10 version = "1.1.2"; 11 12 src = fetchurl { 13 url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz"; 14 sha256 = "1srx78k90ycla7yisa9h593n9l8br31lsdxlspra8sxiyq0sbk72"; 15 }; 16 17 requiredOctavePackages = [ 18 optim 19 ]; 20 21 meta = { 22 homepage = "https://gnu-octave.github.io/packages/econometrics/"; 23 license = lib.licenses.gpl3Plus; 24 maintainers = with lib.maintainers; [ KarlJoad ]; 25 description = "Econometrics functions including MLE and GMM based techniques"; 26 # Hasn't been updated since 2012, and fails to build with octave >= 10.1.0 27 broken = true; 28 }; 29}