packages feed

nix-eval-0.3.3.0: nix-eval.cabal

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

name:                nix-eval
version:             0.3.3.0
synopsis:            Evaluate Haskell expressions using Nix to get packages
description:         Evaluate Haskell expressions using Nix to get packages
homepage:            http://chriswarbo.net/git/nix-eval
license:             GPL
license-file:        LICENSE
author:              Chris Warburton
maintainer:          chriswarbo@gmail.com
-- copyright:           
category:            Language
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
data-files:          wrapper.sh
                   , ghcEnvWithPkgs.nix

source-repository head
  type:     git
  location: http://chriswarbo.net/git/nix-eval.git

library
  exposed-modules:     Language.Eval.Internal
                     , Language.Eval
  other-modules:       Paths_nix_eval
  -- other-extensions:    
  build-depends:       base >=4.8 && < 4.10
                     , process
                     , strict
                     , hindent >= 4.0
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite tests
  default-language:    Haskell2010
  type:                exitcode-stdio-1.0
  hs-source-dirs:      tests
  main-is:             Main.hs
  build-depends:       base >= 4.7
                     , QuickCheck
                     , tasty >= 0.7
                     , tasty-quickcheck
                     , nix-eval