Unverified Commit 137aab9d authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

octavePackages.statistics: 1.8.0 -> 1.8.2 (#498438)

parents a71176cd ca16bfb7
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{
  buildOctavePackage,
  lib,
  fetchFromGitHub,
  nix-update-script,
}:

buildOctavePackage rec {
  pname = "datatypes";
  version = "1.2.0";

  src = fetchFromGitHub {
    owner = "pr0m1th3as";
    repo = "datatypes";
    tag = "release-${version}";
    sha256 = "sha256-0RhZm/UzICbAAn1uCSQSgq8+6GnOuTB6TD9NoIEdvXA=";
  };

  passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=release-(.*)" ]; };

  meta = {
    homepage = "https://gnu-octave.github.io/packages/datatypes/";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ KarlJoad ];
    description = "Extra data types for GNU Octave";
  };
}
+4 −2
Original line number Diff line number Diff line
@@ -3,21 +3,23 @@
  lib,
  fetchFromGitHub,
  io,
  datatypes,
}:

buildOctavePackage rec {
  pname = "statistics";
  version = "1.8.0";
  version = "1.8.2";

  src = fetchFromGitHub {
    owner = "gnu-octave";
    repo = "statistics";
    tag = "release-${version}";
    hash = "sha256-4nwkrnYaFdBkLLbIUJX0U4tytHrSIKltWu7Srx43K5g=";
    hash = "sha256-5wUQLIMr1X07Yi4AANBFjd0izDzGNsI5ccY7IherB3I=";
  };

  requiredOctavePackages = [
    io
    datatypes
  ];

  meta = {
+2 −0
Original line number Diff line number Diff line
@@ -84,6 +84,8 @@ makeScope newScope (

    dataframe = callPackage ../development/octave-modules/dataframe { };

    datatypes = callPackage ../development/octave-modules/datatypes { };

    dicom = callPackage ../development/octave-modules/dicom { };

    divand = callPackage ../development/octave-modules/divand { };