commit
54ade273e7
@ -1548,6 +1548,11 @@
|
|||||||
github = "iblech";
|
github = "iblech";
|
||||||
name = "Ingo Blechschmidt";
|
name = "Ingo Blechschmidt";
|
||||||
};
|
};
|
||||||
|
idontgetoutmuch = {
|
||||||
|
email = "dominic@steinitz.org";
|
||||||
|
github = "idontgetoutmuch";
|
||||||
|
name = "Dominic Steinitz";
|
||||||
|
};
|
||||||
igsha = {
|
igsha = {
|
||||||
email = "igor.sharonov@gmail.com";
|
email = "igor.sharonov@gmail.com";
|
||||||
github = "igsha";
|
github = "igsha";
|
||||||
|
28
pkgs/development/libraries/sundials/default.nix
Normal file
28
pkgs/development/libraries/sundials/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ cmake, fetchurl, python, stdenv }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
pname = "sundials";
|
||||||
|
version = "3.1.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
|
||||||
|
sha256 = "0fnlrpj6qjamxahd70r4vsgv85kxbgh93gxqk5xzf9ln6a7jzm8q";
|
||||||
|
};
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
export cmakeFlags="-DCMAKE_INSTALL_PREFIX=$out -DEXAMPLES_INSTALL_PATH=$out/share/examples $cmakeFlags"
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [ cmake python ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Suite of nonlinear differential/algebraic equation solvers";
|
||||||
|
homepage = https://computation.llnl.gov/casc/sundials/main.html;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = [ maintainers.idontgetoutmuch ];
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -11465,6 +11465,8 @@ with pkgs;
|
|||||||
|
|
||||||
suil = suil-qt4;
|
suil = suil-qt4;
|
||||||
|
|
||||||
|
sundials = callPackage ../development/libraries/sundials { };
|
||||||
|
|
||||||
sutils = callPackage ../tools/misc/sutils { };
|
sutils = callPackage ../tools/misc/sutils { };
|
||||||
|
|
||||||
svrcore = callPackage ../development/libraries/svrcore { };
|
svrcore = callPackage ../development/libraries/svrcore { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user