├── .gitignore ├── LICENSE ├── README.md └── example ├── Dockerfile ├── Hello.hs ├── LICENSE ├── hello.cabal └── stack.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[op] 2 | .stack-work 3 | /example/build 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkubb/haskell-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkubb/haskell-builder/HEAD/README.md -------------------------------------------------------------------------------- /example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkubb/haskell-builder/HEAD/example/Dockerfile -------------------------------------------------------------------------------- /example/Hello.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkubb/haskell-builder/HEAD/example/Hello.hs -------------------------------------------------------------------------------- /example/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkubb/haskell-builder/HEAD/example/LICENSE -------------------------------------------------------------------------------- /example/hello.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkubb/haskell-builder/HEAD/example/hello.cabal -------------------------------------------------------------------------------- /example/stack.yaml: -------------------------------------------------------------------------------- 1 | flags: {} 2 | packages: 3 | - '.' 4 | extra-deps: [] 5 | resolver: nightly-2015-08-21 6 | --------------------------------------------------------------------------------