Created
June 2, 2019 16:11
-
-
Save chrissound/364033b22ab8c1a60d5196c29758f9e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { mkDerivation, base, directory, extra, filepath, foldl, hpack | |
| , HUnit, mtl, optparse-applicative, pandoc-include-code, parsec | |
| , pretty-simple, process, QuickCheck, rainbow, regex-pcre | |
| , regex-posix, safe, stdenv, string-conversions, system-filepath | |
| , template-haskell, text, transformers, turtle, unix | |
| , unordered-containers | |
| }: | |
| mkDerivation { | |
| pname = "gitchapter"; | |
| version = "0.1.0.0"; | |
| src = ./.; | |
| isLibrary = false; | |
| isExecutable = true; | |
| libraryToolDepends = [ hpack ]; | |
| executableHaskellDepends = [ | |
| base directory extra filepath foldl HUnit mtl optparse-applicative | |
| pandoc-include-code parsec pretty-simple process QuickCheck rainbow | |
| regex-pcre regex-posix safe string-conversions system-filepath | |
| template-haskell text transformers turtle unix unordered-containers | |
| ]; | |
| preConfigure = "hpack"; | |
| license = stdenv.lib.licenses.bsd3; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment