6557ea2b45
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/sundials/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 3.1.1 with grep in /nix/store/fkdjdcj8ydq78an3dxgg2ppalahccla5-sundials-3.1.1 - directory tree listing: https://gist.github.com/bc116dd93142b639fe041213e8223715
29 lines
804 B
Nix
29 lines
804 B
Nix
{ cmake, fetchurl, python, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "sundials";
|
|
version = "3.1.1";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
|
|
sha256 = "090s8ymhd0g1s1d44fa73r5yi32hb4biwahhbfi327zd64yn8kd2";
|
|
};
|
|
|
|
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;
|
|
};
|
|
|
|
}
|