dhall-haskell/nix/repline.nix
quasicomputational 4f9defec25 Use MonadFail.fail, not Monad.fail. (#912)
Monad.fail is no more with GHC 8.8, so this is a forced change.
However, it will also work on older GHCs.
2019-05-01 11:22:39 -07:00

15 lines
450 B
Nix

{ mkDerivation, base, containers, fail, haskeline, mtl, process
, stdenv
}:
mkDerivation {
pname = "repline";
version = "0.2.1.0";
sha256 = "45c3186ff35ed650ee9c641f545a30860eedc44107fefb21da36df47aeb1ae7b";
libraryHaskellDepends = [
base containers fail haskeline mtl process
];
homepage = "https://github.com/sdiehl/repline";
description = "Haskeline wrapper for GHCi-like REPL interfaces";
license = stdenv.lib.licenses.mit;
}