about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/vty/default.nix
blob: 46f39d1e0a69fecf8d55b6d715478ed2999c2f40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, utf8String, terminfo, deepseq, mtl, parallel, parsec, vectorSpace}:

cabal.mkDerivation (self : {
  pname = "vty";
  version = "4.4.0.0";
  sha256 = "bf032022a72831e263d2d48d0a7a3191fb1174554cd714902a60cb0f39afe312";
  propagatedBuildInputs =
    [utf8String terminfo deepseq mtl parallel parsec vectorSpace];
  meta = {
    description = "A simple terminal access library";
  };
})