mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
29 lines
612 B
Nix
29 lines
612 B
Nix
{ 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";
|
|
};
|
|
}
|