mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
afbd26bca8
remove trailing period
29 lines
604 B
Nix
29 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";
|
|
};
|
|
}
|