-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathnix-tree.cabal
83 lines (79 loc) · 2.87 KB
/
nix-tree.cabal
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
71
72
73
74
75
76
77
78
79
80
81
82
83
cabal-version: 2.4
name: nix-tree
synopsis: Interactively browse a Nix store paths dependencies
description: A terminal curses application to browse a Nix store paths dependencies
version: 0.6.0
homepage: https://github.com/utdemir/nix-tree
license: BSD-3-Clause
license-file: LICENSE
author: Utku Demir
maintainer: Utku Demir
copyright: Utku Demir
category: Language.Nix
build-type: Simple
extra-source-files: README.md, CHANGELOG.md
common common-options
ghc-options: -threaded
-Wall -Wpartial-fields -Wincomplete-record-updates -Widentities
default-language: Haskell2010
default-extensions: LambdaCase
OverloadedStrings
TupleSections
TypeApplications
GeneralizedNewtypeDeriving
DeriveGeneric
DeriveFunctor
DerivingStrategies
DeriveAnyClass
FlexibleInstances
DeriveLift
StandaloneDeriving
DataKinds
KindSignatures
NamedFieldPuns
RankNTypes
ScopedTypeVariables
NumericUnderscores
MultiWayIf
TemplateHaskell
other-modules: NixTree.PathStats
NixTree.StorePath
NixTree.App
Data.InvertedIndex
NixTree.Clipboard
mixins: base hiding (Prelude)
, relude (Relude as Prelude)
build-depends: base
, relude
, aeson
, brick >= 2.1
, bytestring
, containers
, clock
, filepath
, hrfsize
, text
, typed-process
, unordered-containers
, vty
, directory
, optparse-applicative
, microlens
, dot
executable nix-tree
import: common-options
ghc-options: -Wunused-packages -threaded -with-rtsopts=-N
main-is: NixTree/Main.hs
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >= 4.11 && < 5
, terminal-progress-bar
, async
test-suite nix-tree-tests
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: test/ src/
other-modules: Test.Data.InvertedIndex
main-is: Test.hs
build-depends: base >=4.11 && < 5
, hedgehog