summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/vty-ui/default.nix
blob: 5d0c9ffd91a83f7ff635ea0693967395495355a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ cabal, filepath, mtl, QuickCheck, random, regexBase, stm, text
, time, vector, vty
}:

cabal.mkDerivation (self: {
  pname = "vty-ui";
  version = "1.6";
  sha256 = "0chwgzzk2pl9kppd9r6h2azbqc668xpdrrk5y415yi8wcw61s0bc";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    filepath mtl QuickCheck random regexBase stm text time vector vty
  ];
  meta = {
    homepage = "http://jtdaugherty.github.com/vty-ui/";
    description = "An interactive terminal user interface library for Vty";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})