nixpkgs/pkgs/development/libraries/sundials/default.nix

29 lines
804 B
Nix
Raw Normal View History

2018-03-01 10:14:18 +01:00
{ 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;
2018-03-11 16:21:37 +01:00
maintainers = [ maintainers.idontgetoutmuch ];
license = licenses.bsd3;
2018-03-01 10:14:18 +01:00
};
}