Skip to content

Instantly share code, notes, and snippets.

@idontgetoutmuch
Created March 7, 2018 15:47
Show Gist options
  • Select an option

  • Save idontgetoutmuch/947e7b4afa771e69c3540b674d162137 to your computer and use it in GitHub Desktop.

Select an option

Save idontgetoutmuch/947e7b4afa771e69c3540b674d162137 to your computer and use it in GitHub Desktop.
sundials =
let
pname = "sundials"
version = "3.1.0;
in stdenv.mkDerivation {
name = "${pname}-${version}";
src = fetchurl {
url = "https://computation.llnl.gov/projects/${pname}/download/${pname}-${version}.tar.gz";
sha256 = "17dk0ckm6mp1ajc0cd6bwyi638ynw2f6bhbn7gynrs0wfmiyldng";
};
cmakeFlags = [
"-DCMAKE_INSTALL_PREFIX=/home/myname/sundials/instdir"
"-DEXAMPLES_INSTALL_PATH=/home/myname/sundials/instdir/examples"
];
buildInputs = [ cmake ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment