3
0
Fork 0
forked from mirrors/nixpkgs

sundials: use cmakeFlags

This commit is contained in:
Florian Klink 2019-07-02 14:55:34 +02:00
parent 462cdb9aac
commit d9ce716ccc

View file

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