about summary refs log tree commit diff
path: root/third_party/overlays/haskell/extra-pkgs/brick-0.73.nix
blob: c5e2883c751feb8393dd52f5ff4df5ef2e166d67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{ mkDerivation
, base
, bytestring
, config-ini
, containers
, contravariant
, data-clist
, deepseq
, directory
, dlist
, exceptions
, filepath
, lib
, microlens
, microlens-mtl
, microlens-th
, QuickCheck
, stm
, template-haskell
, text
, text-zipper
, transformers
, unix
, vector
, vty
, word-wrap
}:
mkDerivation {
  pname = "brick";
  version = "0.73";
  sha256 = "741c8d0717f0ab5addd5d3acc88cb36d645a0c73907bde509b2fd9d9bc02039c";
  isLibrary = true;
  isExecutable = true;
  libraryHaskellDepends = [
    base
    bytestring
    config-ini
    containers
    contravariant
    data-clist
    deepseq
    directory
    dlist
    exceptions
    filepath
    microlens
    microlens-mtl
    microlens-th
    stm
    template-haskell
    text
    text-zipper
    transformers
    unix
    vector
    vty
    word-wrap
  ];
  testHaskellDepends = [
    base
    containers
    microlens
    QuickCheck
    vector
    vty
  ];
  homepage = "https://github.com/jtdaugherty/brick/";
  description = "A declarative terminal user interface library";
  license = lib.licenses.bsd3;
}