dhall-haskell/default.nix

26 lines
961 B
Nix
Raw Normal View History

{ mkDerivation, ansi-wl-pprint, base, bytestring, case-insensitive
, charset, containers, http-client, http-client-tls, lens
, neat-interpolation, optparse-generic, parsers, stdenv
, system-fileio, system-filepath, tasty, tasty-hunit, text
, text-format, transformers, trifecta, unordered-containers, vector
2016-12-20 05:27:15 +01:00
}:
mkDerivation {
pname = "dhall";
2017-05-17 18:04:42 +02:00
version = "1.3.0";
2016-12-20 05:27:15 +01:00
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-wl-pprint base bytestring case-insensitive charset containers
http-client http-client-tls lens neat-interpolation parsers
system-fileio system-filepath text text-format transformers
trifecta unordered-containers vector
2016-12-20 05:27:15 +01:00
];
executableHaskellDepends = [ base optparse-generic text trifecta ];
testHaskellDepends = [
base neat-interpolation tasty tasty-hunit text vector
];
2016-12-20 05:27:15 +01:00
description = "A configuration language guaranteed to terminate";
license = stdenv.lib.licenses.bsd3;
}