nixpkgs/pkgs/development/octave-modules/bim/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
628 B
Nix
Raw Normal View History

2021-01-06 16:42:24 +00:00
{ buildOctavePackage
, lib
, fetchFromGitHub
2021-01-06 16:42:24 +00:00
, fpl
, msh
}:
buildOctavePackage rec {
pname = "bim";
version = "1.1.6";
2021-01-06 16:42:24 +00:00
src = fetchFromGitHub {
owner = "carlodefalco";
repo = "bim";
rev = "v${version}";
sha256 = "sha256-hgFb1KFE1KJC8skIaeT/7h/fg1aqRpedGnEPY24zZSI=";
2021-01-06 16:42:24 +00:00
};
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";
};
}