nixpkgs/pkgs/development/libraries/haskell/vty/4.6.0.4.nix
Peter Simons 7892062e3c haskell-vty: updated to version 4.7.0.4
The old version is still around, because hledger-vty won't accept the
latest one. Note that previously the vty was build with 'mtl' overridden
to 'mtl2'. I dropped that override, because it seems to have become be
unnecessary. If anyone is aware of a hidden reason why that mtl2 must be
set explicitly, please let me know.

svn path=/nixpkgs/trunk/; revision=28258
2011-08-07 19:33:34 +00:00

13 lines
379 B
Nix

{cabal, utf8String, terminfo, deepseq, mtl, parallel, parsec, vectorSpace}:
cabal.mkDerivation (self : {
pname = "vty";
version = "4.6.0.4";
sha256 = "0kabssw3v7nglvsr687ppmdnnmii1q2g5zg8rxwi2hcmvnjx7567";
propagatedBuildInputs =
[utf8String terminfo deepseq mtl parallel parsec vectorSpace];
meta = {
description = "A simple terminal access library";
};
})