packages feed

libnix-0.2.0.0: libnix.cabal

-- Initial libnix.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                libnix
version:             0.2.0.0
synopsis:            Bindings to the nix package manager
-- description:       
license:             GPL-3
license-file:        LICENSE
author:              Profpatsch
maintainer:          mail@profpatsch.de
-- copyright:           
category:            Foreign, Nix
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Foreign.Nix.Shellout
                     , Foreign.Nix.Shellout.Prefetch
                     , Foreign.Nix.Shellout.Types
  other-modules:       Foreign.Nix.Shellout.Helpers
  build-depends:       base >=4.9 && <5
                     , aeson >=1.0.0.0 && <1.5.0.0
                     , errors >=2.2.0 && <2.4.0
                     , filepath
                     , protolude ==0.2.*
                     , process
                     , text
  -- hs-source-dirs:      
  ghc-options:        -Wall
  default-extensions:  NoImplicitPrelude
                     , OverloadedStrings
                     , LambdaCase
                     , TupleSections
                     , ViewPatterns
  default-language:    Haskell2010

test-suite tests
  type:                exitcode-stdio-1.0
  main-is:             Main.hs
  hs-source-dirs:      tests
  other-modules:       TestShellout
  build-depends:       base
                     , directory
                     , errors
                     , text
                     , libnix
                     , protolude
                     , tasty
                     , tasty-hunit
  ghc-options:        -threaded -rtsopts -with-rtsopts=-N -Wall
  default-extensions:  NoImplicitPrelude
                     , OverloadedStrings
                     , LambdaCase
                     , TupleSections
  default-language:    Haskell2010