Merge pull request #303 from aforemny/haskell-vty-ui

Add Haskell package vty-ui
This commit is contained in:
Peter Simons 2013-02-07 07:51:01 -08:00
commit 6e067d336b
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,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;
};
})

View File

@ -1784,6 +1784,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
vty = callPackage ../development/libraries/haskell/vty {};
vtyUi = callPackage ../development/libraries/haskell/vty-ui {};
wai = callPackage ../development/libraries/haskell/wai {};
waiAppStatic = callPackage ../development/libraries/haskell/wai-app-static {};