-
-
Save DanielG/7432d7dfa61e48b6e7ebb737d381c0b7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Lib where | |
foo = () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
main :: IO () | |
main = putStrLn "Hello, Haskell!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: repro-stack-build-tool-depends-cycle | |
version: 0.1.0.0 | |
author: Daniel Gröber | |
maintainer: [email protected] | |
build-type: Simple | |
cabal-version: >=1.10 | |
library | |
build-depends: base | |
default-language: Haskell2010 | |
build-tool-depends: repro-stack-build-tool-depends-cycle:myexe | |
executable myexe | |
main-is: Main.hs | |
build-depends: base | |
default-language: Haskell2010 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resolver: lts-12.7 | |
packages: | |
- . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment