about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/octave-modules/bim/default.nix
blob: 5dc8ca88710d62114dbae7aa8f29bd7bb236697c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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";
  };
}