urbit-hob

Haskell utilities for phonetic base wrangling.
Log | Files | Refs | README | LICENSE

commit 18605a02cc87cef0e28257027d0d7dbc479cd2c3
Author: Jared Tobin <jared@jtobin.io>
Date:   Fri,  6 Sep 2019 04:56:10 -0230

init: project skeleton

Diffstat:
A.gitignore | 1+
ASetup.hs | 2++
Ahob.cabal | 30++++++++++++++++++++++++++++++
Astack.yaml | 5+++++
4 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -0,0 +1 @@ +.stack-work/ diff --git a/Setup.hs b/Setup.hs @@ -0,0 +1,2 @@ +import Distribution.Simple +main = defaultMain diff --git a/hob.cabal b/hob.cabal @@ -0,0 +1,30 @@ +name: hob +version: 0.1.0 +description: Hoon-style atom manipulation and printing functions +homepage: https://github.com/urbit/hob#readme +bug-reports: https://github.com/urbit/hob/issues +author: Jared Tobin +maintainer: jared@jtobin.io +copyright: 2019 Jared Tobin +license: BSD3 +license-file: LICENSE +build-type: Simple +cabal-version: >= 1.10 + +source-repository head + type: git + location: https://github.com/urbit/hob + +library + default-language: Haskell2010 + hs-source-dirs: src + other-modules: Paths_hob + exposed-modules: + Co, + Muk, + Ob + build-depends: + base >= 4.7 && < 6 + , bytestring >= 0.10 && < 0.11 + , murmur3 >= 1.0 && < 1.1 + diff --git a/stack.yaml b/stack.yaml @@ -0,0 +1,5 @@ +flags: {} +packages: +- '.' +extra-deps: [] +resolver: lts-13.26