depot/pkgs/development/octave-modules/statistics/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

28 lines
604 B
Nix

{ buildOctavePackage
, lib
, fetchFromGitHub
, io
}:
buildOctavePackage rec {
pname = "statistics";
version = "1.6.7";
src = fetchFromGitHub {
owner = "gnu-octave";
repo = "statistics";
rev = "refs/tags/release-${version}";
hash = "sha256-cXAjUiv4xWPrWf7HQg9Y+JkR7ON9iefKFUGbEr9FGNA=";
};
requiredOctavePackages = [
io
];
meta = with lib; {
homepage = "https://packages.octave.org/statistics";
license = with licenses; [ gpl3Plus publicDomain ];
maintainers = with maintainers; [ KarlJoad ];
description = "Statistics package for GNU Octave";
};
}