ghcup-hs/ghcup.cabal

42 lines
1.2 KiB
Plaintext

cabal-version: 2.0
-- Initial package description 'ghcup.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: ghcup
version: 0.1.0.0
synopsis: ghc toolchain installer as an exe/library
-- description:
homepage: https://github.com/hasufell/ghcup-hs
-- bug-reports:
license: LGPL-3
license-file: LICENSE
author: Julian Ospald
maintainer: hasufell@posteo.de
-- copyright:
category: System
build-type: Simple
extra-source-files: CHANGELOG.md
library
exposed-modules: MyLib
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.12.0.0
hs-source-dirs: lib
default-language: Haskell2010
executable ghcup
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.12.0.0, ghcup
hs-source-dirs: app
default-language: Haskell2010
test-suite ghcup-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: MyLibTest.hs
build-depends: base ^>=4.12.0.0