|
| 1 | +{ mkDerivation, ansi-wl-pprint, base, base16-bytestring, bytestring |
| 2 | +, case-insensitive, charset, containers, contravariant, cryptohash |
| 3 | +, deepseq, exceptions, http-client, http-client-tls, lens |
| 4 | +, optparse-generic, parsers, prettyprinter, stdenv, system-fileio |
| 5 | +, system-filepath, tasty, tasty-hunit, text, text-format |
| 6 | +, transformers, trifecta, unordered-containers, vector |
| 7 | +}: |
| 8 | +mkDerivation { |
| 9 | + pname = "dhall"; |
| 10 | + version = "1.9.0"; |
| 11 | + sha256 = "5fc53a49c48014ec07a889abcd31b79b43c95d5f36ff494cfa33e229e5cea9c4"; |
| 12 | + isLibrary = true; |
| 13 | + isExecutable = true; |
| 14 | + libraryHaskellDepends = [ |
| 15 | + ansi-wl-pprint base base16-bytestring bytestring case-insensitive |
| 16 | + charset containers contravariant cryptohash exceptions http-client |
| 17 | + http-client-tls lens parsers prettyprinter system-fileio |
| 18 | + system-filepath text text-format transformers trifecta |
| 19 | + unordered-containers vector |
| 20 | + ]; |
| 21 | + executableHaskellDepends = [ |
| 22 | + base optparse-generic prettyprinter system-filepath text trifecta |
| 23 | + ]; |
| 24 | + testHaskellDepends = [ |
| 25 | + base containers deepseq prettyprinter tasty tasty-hunit text vector |
| 26 | + ]; |
| 27 | + description = "A configuration language guaranteed to terminate"; |
| 28 | + license = stdenv.lib.licenses.bsd3; |
| 29 | +} |
0 commit comments