packages feed

libnix-0.2.0.1: libnix.cabal

name:                libnix
version:             0.2.0.1
synopsis:            Bindings to the nix package manager
description:         Use the nix package manager from Haskell. All modules are designed to be imported qualified.
category:            Foreign, Nix
homepage:            https://github.com/Profpatsch/libnix-haskell#readme
bug-reports:         https://github.com/Profpatsch/libnix-haskell/issues
license:             GPL-3
license-file:        LICENSE
author:              Profpatsch
maintainer:          mail@profpatsch.de
build-type:          Simple
cabal-version:       >=1.10

extra-source-files:  
   LICENSE
   README.md
   shell.nix
   
source-repository head
  type: git
  location: https://github.com/Profpatsch/libnix-haskell

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