packages feed

cabal-test-bin-0.1.2: cabal-test-bin.cabal

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

name:                cabal-test-bin
version:             0.1.2
synopsis:            A program for finding temporary build file during cabal-test.
description:         cabal-test-bin finds exe-file for cabal test below
                     .
                     > cabal install --enable-tests --run-tests
                     .
                     > cabal test
                     .
                     When a project uses cabal-sandbox, cabal-test-bin checks following paths.
                     .
                     > <project root>/dist/dist-sandbox-<hash>/build/<exe-file>/<exe-file> 
                     .
                     > <project root>/dist/build/<exe-file>/<exe-file>
                     .
                     
license:             BSD3
license-file:        LICENSE
author:              Junji Hashimoto
maintainer:          junji.hashimoto@gmail.com
-- copyright:           
category:            Testing
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

bug-reports:         https://github.com/junjihashimoto/cabal-test-bin/issues

source-repository head
  type:           git
  location:       https://github.com/junjihashimoto/cabal-test-bin.git

executable cabal-test-bin
  main-is:             Main.hs
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.7 && <4.8
                     , directory
                     , filepath
                     , unix
  -- hs-source-dirs:      
  default-language:    Haskell2010