octave.pkgs.parallel: init at 4.0.0

This commit is contained in:
Karl Hallsby 2021-01-06 11:50:05 -06:00 committed by Doron Behar
parent 36695031c3
commit 68f2862b36
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ buildOctavePackage
, lib
, fetchurl
, struct
, gnutls
, pkg-config
}:
buildOctavePackage rec {
pname = "parallel";
version = "4.0.0";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "0wmpak01rsccrnb8is7fsjdlxw15157sqyf9s2fabr16yykfmvi8";
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
gnutls
];
requiredOctavePackages = [
struct
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/parallel/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Parallel execution package";
};
}

View file

@ -169,6 +169,8 @@ makeScope newScope (self:
optiminterp = callPackage ../development/octave-modules/optiminterp { };
parallel = callPackage ../development/octave-modules/parallel { };
signal = callPackage ../development/octave-modules/signal { };
symbolic = callPackage ../development/octave-modules/symbolic {