Skip to content

Instantly share code, notes, and snippets.

@idontgetoutmuch
Created July 8, 2017 07:21
Show Gist options
  • Select an option

  • Save idontgetoutmuch/0edc94ba34bdd8742610d48b84991941 to your computer and use it in GitHub Desktop.

Select an option

Save idontgetoutmuch/0edc94ba34bdd8742610d48b84991941 to your computer and use it in GitHub Desktop.
{ mkDerivation, base, Chart, Chart-cairo, colour
, data-accessor, data-default-class, diagrams-lib, lens, linear
, parallel, parsec, primitive, stdenv, template-haskell, vector
, vector-space
}:
mkDerivation {
pname = "numeric-ode";
doCheck = false;
version = "0.1.0.1";
sha256 = "";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base lens linear parallel parsec primitive template-haskell vector
];
executableHaskellDepends = [
base Chart Chart-cairo colour data-accessor data-default-class
diagrams-lib linear vector vector-space
];
description = "Integrators library";
license = stdenv.lib.licenses.bsd3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment