cabal2nix-2.8.2: test/golden-test-cases/vty.nix.golden
{ mkDerivation, base, blaze-builder, bytestring, Cabal, containers
, deepseq, directory, fetchurl, filepath, hashable, HUnit
, microlens, microlens-mtl, microlens-th, mtl, parallel, parsec
, QuickCheck, quickcheck-assertions, random, smallcheck, stm
, string-qq, terminfo, test-framework, test-framework-hunit
, test-framework-smallcheck, text, transformers, unix, utf8-string
, vector
}:
mkDerivation {
pname = "vty";
version = "5.19.1";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base blaze-builder bytestring containers deepseq directory filepath
hashable microlens microlens-mtl microlens-th mtl parallel parsec
stm terminfo text transformers unix utf8-string vector
];
executableHaskellDepends = [
base containers microlens microlens-mtl mtl
];
testHaskellDepends = [
base blaze-builder bytestring Cabal containers deepseq HUnit
microlens microlens-mtl mtl QuickCheck quickcheck-assertions random
smallcheck stm string-qq terminfo test-framework
test-framework-hunit test-framework-smallcheck text unix
utf8-string vector
];
homepage = "https://github.com/jtdaugherty/vty";
description = "A simple terminal UI library";
license = stdenv.lib.licenses.bsd3;
}