nixpkgs/pkgs/development/libraries/haskell/vty/default.nix
Andres Löh ff00c38541 Added a few Haskell packages, updated vty.
svn path=/nixpkgs/trunk/; revision=24231
2010-10-12 07:02:25 +00:00

13 lines
391 B
Nix

{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";
};
})