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

cabal.mkDerivation (self : {
  pname = "vty";
  version = "3.1.8.4";
  sha256 = "9a006e77bb4f032613e059eea7bc4d92cbc7943449fb9c7269a061ddd9b3d82b";
  propagatedBuildInputs = [utf8String terminfo];
  meta = {
    description = "A simple terminal access library";
  };
})