packages feed

nix-tree-0.1.4: nix-tree.cabal

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.1.4
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

common common-options
  ghc-options:        -threaded
                      -Wall -Wpartial-fields -Wincomplete-record-updates -Widentities
                      -Wunused-packages
  default-language:   Haskell2010
  default-extensions: LambdaCase
                      OverloadedStrings
                      TupleSections
                      TypeApplications
                      GeneralizedNewtypeDeriving
                      DeriveGeneric
                      DeriveFunctor
                      DerivingStrategies
                      DeriveAnyClass
                      FlexibleInstances
                      DeriveLift
                      StandaloneDeriving
                      DataKinds
                      KindSignatures
                      NamedFieldPuns
                      RankNTypes
                      ScopedTypeVariables
  other-modules:      PathStats
                      StorePath
                      App
                      InvertedIndex
                      Paths_nix_tree
  autogen-modules:    Paths_nix_tree
  mixins:             base hiding (Prelude)
                    , protolude (Protolude as Prelude)
  build-depends:      base
                    , protolude
                    , aeson
                    , brick
                    , bytestring
                    , containers
                    , deepseq
                    , directory
                    , filepath
                    , hashable
                    , hrfsize
                    , protolude
                    , text
                    , transformers
                    , typed-process
                    , unordered-containers
                    , vty

executable nix-tree
  import:             common-options
  main-is:            Main.hs
  hs-source-dirs:     src
  default-language:   Haskell2010
  build-depends:      base >= 4.11 && < 5

test-suite nix-tree-tests
  import:           common-options
  type:             exitcode-stdio-1.0
  hs-source-dirs:   test/ src/
  main-is:          Test.hs
  ghc-options:      -Wno-unused-packages
  build-depends:    base >=4.11 && < 5
                  , hedgehog