dhall-haskell/nix/haskeline_0_7_3_1.nix
Gabriel Gonzalez 10a781534d
GHCJS support for Dhall (#734)
This adds a GHCJS build for Dhall so that:

* We can build a `try.dhall-lang.org` to try Dhall in the
  browser until the PureScript implementation comes online
* We can document how to build `dhall` using GHCJS
* We can verify that new changes to `dhall` or its dependencies
  don't break GHCJS support
* CI can build and cache GHCJS-related dependencies
2018-12-03 08:07:18 -08:00

17 lines
577 B
Nix

{ mkDerivation, base, bytestring, containers, directory, filepath
, process, stdenv, stm, transformers, unix
}:
mkDerivation {
pname = "haskeline";
version = "0.7.4.3";
sha256 = "046d0930bc2dbc57a7cd9ddb5d1e92c7fdb71c6b91b2bbf673f5406843d6b679";
configureFlags = [ "-f-terminfo" ];
libraryHaskellDepends = [
base bytestring containers directory filepath process stm
transformers unix
];
homepage = "https://github.com/judah/haskeline";
description = "A command-line interface for user input, written in Haskell";
license = stdenv.lib.licenses.bsd3;
}