-- 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.0
synopsis: A program for finding temporary build file during cabal-test.
description: cabal-test-bin finds exe-file for "cabal install --enable-tests --run-tests" or "cabal test".
When a project uses cabal-sandbox,
cabal-test-bin checks both <project root>/dist/dist-sandbox-<hash>/build/<exe-file>/<exe-file>
and <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