nixpkgs/pkgs/development/libraries/haskell/vty/4.7.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

19 lines
592 B
Nix

{cabal, deepseq, mtl, parallel, parsec, terminfo, utf8String,
vector} :
cabal.mkDerivation (self : {
pname = "vty";
version = "4.7.0.4";
sha256 = "1rwki3ch1r3dqzb1cxmzxn05k49ams64licl0silbhsj3qibbj53";
propagatedBuildInputs = [
deepseq mtl parallel parsec terminfo utf8String vector
];
meta = {
homepage = "https://github.com/coreyoconnor/vty";
description = "A simple terminal access library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})