nixpkgs/pkgs/development/libraries/sundials/default.nix
2019-02-03 13:55:45 +01:00

29 lines
795 B
Nix

{ cmake, fetchurl, python, stdenv }:
stdenv.mkDerivation rec {
pname = "sundials";
version = "4.0.2";
src = fetchurl {
url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
sha256 = "0xfk0icsi63yi1dby4rn02ppwkzfykciw6q03bk454gdia9xcmk6";
};
preConfigure = ''
export cmakeFlags="-DCMAKE_INSTALL_PREFIX=$out -DEXAMPLES_INSTALL_PATH=$out/share/examples $cmakeFlags"
'';
nativeBuildInputs = [ cmake ];
buildInputs = [ python ];
meta = with stdenv.lib; {
description = "Suite of nonlinear differential/algebraic equation solvers";
homepage = https://computation.llnl.gov/projects/sundials;
platforms = platforms.all;
maintainers = [ maintainers.idontgetoutmuch ];
license = licenses.bsd3;
};
}