depot/third_party/nixpkgs/pkgs/development/octave-modules/statistics/default.nix
Default email 410b979fe2 Project import generated by Copybara.
GitOrigin-RevId: a64e169e396460d6b5763a1de1dd197df8421688
2023-03-24 01:07:29 +01:00

28 lines
628 B
Nix

{ buildOctavePackage
, lib
, fetchFromGitHub
, io
}:
buildOctavePackage rec {
pname = "statistics";
version = "1.5.4";
src = fetchFromGitHub {
owner = "gnu-octave";
repo = "statistics";
rev = "refs/tags/release-${version}";
sha256 = "sha256-gFauFIaXKzcPeNvpWHv5FAxYQvZNh7ELrSUIvn43IfQ=";
};
requiredOctavePackages = [
io
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/statistics/index.html";
license = with licenses; [ gpl3Plus publicDomain ];
maintainers = with maintainers; [ KarlJoad ];
description = "Additional statistics functions for Octave";
};
}