7892062e3c
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
13 lines
379 B
Nix
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";
|
|
};
|
|
})
|