mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
octave.pkgs.bim: init at 1.1.5
This commit is contained in:
parent
035879d9a5
commit
3cf6bd0e70
28
pkgs/development/octave-modules/bim/default.nix
Normal file
28
pkgs/development/octave-modules/bim/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ buildOctavePackage
|
||||
, lib
|
||||
, fetchurl
|
||||
, fpl
|
||||
, msh
|
||||
}:
|
||||
|
||||
buildOctavePackage rec {
|
||||
pname = "bim";
|
||||
version = "1.1.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||
sha256 = "0y70w8mj80c5yns1j7nwngwwrxp1pa87kyz2n2yvmc3zdigcd6g8";
|
||||
};
|
||||
|
||||
requiredOctavePackages = [
|
||||
fpl
|
||||
msh
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://octave.sourceforge.io/bim/index.html";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ KarlJoad ];
|
||||
description = "Package for solving Diffusion Advection Reaction (DAR) Partial Differential Equations";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user