dhall-haskell/default.nix
2017-04-29 14:46:07 -07:00

24 lines
877 B
Nix

{ mkDerivation, ansi-wl-pprint, base, bytestring, 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
}:
mkDerivation {
pname = "dhall";
version = "1.2.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-wl-pprint base bytestring containers http-client
http-client-tls lens neat-interpolation parsers system-fileio
system-filepath text text-format transformers trifecta
unordered-containers vector
];
executableHaskellDepends = [ base optparse-generic text trifecta ];
testHaskellDepends = [ base tasty tasty-hunit text ];
description = "A configuration language guaranteed to terminate";
license = stdenv.lib.licenses.bsd3;
}