octave.pkgs.tisean: init at 0.2.3
This commit is contained in:
parent
49d3aacfee
commit
609223ec63
33
pkgs/development/octave-modules/tisean/default.nix
Normal file
33
pkgs/development/octave-modules/tisean/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -199,4 +199,6 @@ makeScope newScope (self:
|
|||||||
inherit (octave) python;
|
inherit (octave) python;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tisean = callPackage ../development/octave-modules/tisean { };
|
||||||
|
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user