{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / development / octave-modules / bim / default.nix
blobdc018ae6143eaa5fc261e6f6df4ff174423e8a77
1 { buildOctavePackage
2 , lib
3 , fetchFromGitHub
4 , fpl
5 , msh
6 }:
8 buildOctavePackage rec {
9   pname = "bim";
10   version = "1.1.6";
12   src = fetchFromGitHub {
13     owner = "carlodefalco";
14     repo = "bim";
15     rev = "v${version}";
16     sha256 = "sha256-hgFb1KFE1KJC8skIaeT/7h/fg1aqRpedGnEPY24zZSI=";
17   };
19   requiredOctavePackages = [
20     fpl
21     msh
22   ];
24   meta = with lib; {
25     homepage = "https://octave.sourceforge.io/bim/index.html";
26     license = licenses.gpl2Plus;
27     maintainers = with maintainers; [ KarlJoad ];
28     description = "Package for solving Diffusion Advection Reaction (DAR) Partial Differential Equations";
29   };