Files
haskell.nix/test/cabal-simple-debug/cabal-simple.cabal
Hamish Mackenzie bab2eaea62 Enable debug info on linux targets (#1050)
* Add `.debug` to build any component with DWARF dugug info on linux
  (ghc >=8.10.2).
* Pass `enableDWARF` to `shellFor` for to get a shell where all the
  components are the `.debug` ones.
2021-02-22 18:27:36 +13:00

38 lines
985 B
Plaintext

cabal-version: >=1.10
-- Initial package description 'cabal-simple.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: cabal-simple
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: PublicDomain
author: Rodney Lorrimar
maintainer: rodney.lorrimar@iohk.io
-- category:
build-type: Simple
library
-- exposed-modules:
-- other-modules:
-- other-extensions:
build-depends: base
, extra
, safe
, aeson
-- hs-source-dirs:
default-language: Haskell2010
executable cabal-simple
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base
, cabal-simple
, extra
, optparse-applicative
-- hs-source-dirs:
default-language: Haskell2010