Skip to content

Instantly share code, notes, and snippets.

@Vizaxo
Created May 30, 2019 21:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Vizaxo/2d74a01c5d0040f9b2d3989c2a82267b to your computer and use it in GitHub Desktop.
Save Vizaxo/2d74a01c5d0040f9b2d3989c2a82267b to your computer and use it in GitHub Desktop.
{ mkDerivation, base, Chart, hip, hpack, lens, linear, stdenv }:
mkDerivation {
pname = "ray-tracer";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base Chart hip lens linear ];
libraryToolDepends = [ hpack ];
executableHaskellDepends = [ base hip lens linear ];
testHaskellDepends = [ base hip lens linear ];
preConfigure = "hpack";
homepage = "https://github.com/githubuser/ray-tracer#readme";
license = stdenv.lib.licenses.bsd3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment