shaped initial project

This commit is contained in:
Dennis Frieberg 2020-09-22 16:53:25 +02:00
parent d27eac6827
commit 4bfe5baee3
8 changed files with 27 additions and 23 deletions

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "tickLeiste"]
path = tickLeiste
url = ssh://gitolite@nerfingen.de:39999/tickLeiste

View file

@ -1,6 +1,5 @@
module Main where
import Lib
main :: IO ()
main = someFunc
main = return ()

View file

@ -21,9 +21,8 @@ description: Please see the README on GitHub at <https://github.com/gith
dependencies:
- base >= 4.7 && < 5
library:
source-dirs: src
- tickLeiste
- tickLeiste-aeson
executables:
tickLeisteTestClient-exe:

View file

@ -1,6 +0,0 @@
module Lib
( someFunc
) where
someFunc :: IO ()
someFunc = putStrLn "someFunc"

View file

@ -35,7 +35,9 @@ packages:
# These entries can reference officially published versions as well as
# forks / in-progress versions pinned to a git hash. For example:
#
# extra-deps:
extra-deps:
- tickLeiste/tickLeiste
- tickLeiste/tickLeiste-aeson
# - acme-missiles-0.3
# - git: https://github.com/commercialhaskell/stack.git
# commit: e7b331f14bcffb8367cd58fbfc8b40ec7642100a

13
stack.yaml.lock Normal file
View file

@ -0,0 +1,13 @@
# This file was autogenerated by Stack.
# You should not edit this file by hand.
# For more information, please see the documentation at:
# https://docs.haskellstack.org/en/stable/lock_files
packages: []
snapshots:
- completed:
size: 532380
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/16/15.yaml
sha256: 3b5f2a699aa5ed3abbc30410062bf743926f0868ce3eeb5655370c6c6cc1a9f4
original:
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/16/15.yaml

1
tickLeiste Submodule

@ -0,0 +1 @@
Subproject commit b40c7faef0343a09f256833d822cc7734e3fcb4f

View file

@ -23,17 +23,6 @@ source-repository head
type: git
location: https://github.com/githubuser/tickLeisteTestClient
library
exposed-modules:
Lib
other-modules:
Paths_tickLeisteTestClient
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
default-language: Haskell2010
executable tickLeisteTestClient-exe
main-is: Main.hs
other-modules:
@ -43,6 +32,8 @@ executable tickLeisteTestClient-exe
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, tickLeiste
, tickLeiste-aeson
, tickLeisteTestClient
default-language: Haskell2010
@ -56,5 +47,7 @@ test-suite tickLeisteTestClient-test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, tickLeiste
, tickLeiste-aeson
, tickLeisteTestClient
default-language: Haskell2010