octave.pkgs.tisean: init at 0.2.3

This commit is contained in:
Karl Hallsby 2021-01-06 12:11:15 -06:00 committed by Doron Behar
parent 49d3aacfee
commit 609223ec63
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ buildOctavePackage
, lib
, fetchurl
# Octave dependencies
, signal # >= 1.3.0
# Build dependencies
, gfortran
}:
buildOctavePackage rec {
pname = "tisean";
version = "0.2.3";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "0nc2d9h91glxzmpizxdrc2dablw4bqhqhzs37a394c36myk4xjdv";
};
nativeBuildInputs = [
gfortran
];
requiredOctavePackages = [
signal
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/tisean/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Port of TISEAN 3.0.1";
};
}

View file

@ -199,4 +199,6 @@ makeScope newScope (self:
inherit (octave) python;
};
tisean = callPackage ../development/octave-modules/tisean { };
})