dhall-haskell/default.nix

37 lines
1.4 KiB
Nix
Raw Normal View History

{ mkDerivation, ansi-terminal, ansi-wl-pprint, base
, base16-bytestring, bytestring, case-insensitive, charset
, containers, contravariant, cryptohash, deepseq, directory
, exceptions, filepath, haskeline, http-client, http-client-tls
, insert-ordered-containers, lens-family-core, mtl
, optparse-generic, parsers, prettyprinter
, prettyprinter-ansi-terminal, repline, scientific, stdenv
, system-filepath, tasty, tasty-hunit, text, text-format
, transformers, trifecta, unordered-containers, vector
2016-12-20 05:27:15 +01:00
}:
mkDerivation {
pname = "dhall";
2018-02-01 17:21:55 +01:00
version = "1.9.1";
2016-12-20 05:27:15 +01:00
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-terminal ansi-wl-pprint base base16-bytestring bytestring
case-insensitive charset containers contravariant cryptohash
directory exceptions filepath http-client http-client-tls
insert-ordered-containers lens-family-core parsers prettyprinter
prettyprinter-ansi-terminal scientific text text-format
transformers trifecta unordered-containers vector
2016-12-20 05:27:15 +01:00
];
2017-10-10 19:25:19 +02:00
executableHaskellDepends = [
ansi-terminal base containers haskeline mtl optparse-generic
prettyprinter prettyprinter-ansi-terminal repline system-filepath
text trifecta
2017-10-10 19:25:19 +02:00
];
2017-09-02 19:01:20 +02:00
testHaskellDepends = [
base containers deepseq insert-ordered-containers prettyprinter
tasty tasty-hunit text vector
2017-09-02 19:01:20 +02:00
];
2016-12-20 05:27:15 +01:00
description = "A configuration language guaranteed to terminate";
license = stdenv.lib.licenses.bsd3;
}