Skip to content

Commit

Permalink
Change to cabal
Browse files Browse the repository at this point in the history
  • Loading branch information
mauriciofierrom committed Jul 8, 2021
1 parent f57c116 commit 8f08905
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 121 deletions.
5 changes: 3 additions & 2 deletions .gitignore
@@ -1,3 +1,4 @@
.stack-work/
dist/
dist-newstyle/
brainfuck.cabal
*~
*~
57 changes: 57 additions & 0 deletions brain-f.cabal
@@ -0,0 +1,57 @@
cabal-version: 2.4
name: brainfuck
version: 0.1.0.0

-- A short (one-line) description of the package.
-- synopsis:

-- A longer description of the package.
-- description:

-- A URL where users can report bugs.
-- bug-reports:

-- The license under which the package is released.
-- license:
author: Mauricio Fierro
maintainer: mauriciofierrom@gmail.com

-- A copyright notice.
-- copyright:
-- category:
extra-source-files:
ChangeLog.md
README.md

library
exposed-modules:
Lib
Parsing

-- Modules included in this library but not exported.
-- other-modules:
other-extensions: GADTs RecordWildCards OverloadedStrings
build-depends:
base ^>=4.12.0.0,
containers ^>=0.6.0.1,
text ^>=1.2.3.1,
megaparsec,

hs-source-dirs: src
default-language: Haskell2010

executable brainfuck
main-is: Main.hs

-- Modules included in this executable, other than Main.
-- other-modules:
other-extensions: GADTs RecordWildCards OverloadedStrings
build-depends:
base ^>=4.12.0.0,
containers ^>=0.6.0.1,
text ^>=1.2.3.1,
megaparsec,
brainfuck

hs-source-dirs: app
default-language: Haskell2010
53 changes: 0 additions & 53 deletions package.yaml

This file was deleted.

66 changes: 0 additions & 66 deletions stack.yaml

This file was deleted.

0 comments on commit 8f08905

Please sign in to comment.