Merge pull request #303 from aforemny/haskell-vty-ui
Add Haskell package vty-ui
This commit is contained in:
commit
6e067d336b
20
pkgs/development/libraries/haskell/vty-ui/default.nix
Normal file
20
pkgs/development/libraries/haskell/vty-ui/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user