-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunhs.cabal
47 lines (43 loc) · 1.26 KB
/
runhs.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
cabal-version: 2.2
name: runhs
version: 1.0.0.10
synopsis: Stack wrapper for single-file Haskell programs.
description:
Stack wrapper for single-file Haskell programs.
Declare package dependencies in the source code of your single-file Haskell program.
Easily and reliably run your program, compile it, or load it in GHCi or Ghcid.
category: Tools
homepage: https://github.com/friedbrice/runhs#readme
bug-reports: https://github.com/friedbrice/runhs/issues
author: Daniel Brice
maintainer: [email protected]
copyright: Copyright (C) 2020-2021 Daniel Brice
license: BSD-3-Clause
license-file: README.md
build-type: Simple
source-repository head
type: git
location: https://github.com/friedbrice/runhs
executable runhs
main-is: Main.hs
hs-source-dirs: src
build-depends:
base >=4.11 && <5
, bytestring >=0.10.8.2 && <1
, file-embed >=0.0.10.1 && <1
, process >=1.6.3.0 && <2
, terminal-size >=0.3.2.1 && <1
, text >=1.2.3.1 && <2
, word-wrap >=0.4.1 && <1
, yaml >=0.8.32 && <1
default-language: Haskell2010
test-suite runhs-test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
build-depends:
base
, directory >=1.3.1.5 && <2
, hspec >=2.5.5 && <3
, process
default-language: Haskell2010