Commit a6563d86 authored by Nicolas Lenz's avatar Nicolas Lenz ❄️
Browse files

Stage 1, pakage

parent 331298dc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
config.yaml

# ---> Haskell
*.cabal
dist
dist-*
cabal-dev

examples/types.katrin

0 → 100644
+2 −0
Original line number Diff line number Diff line
bool : type
    {True, False}

katrin.cabal

deleted100644 → 0
+0 −68
Original line number Diff line number Diff line
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.1.
--
-- see: https://github.com/sol/hpack
--
-- hash: 8be90f2031d0309ad5effdfd1bccabf1108f825457ce34543279ee39e5ac9515

name:           katrin
version:        0.0.0
synopsis:       Experimental functional and dependently-typet programming language
description:    Please see the README at <https://git.eisfunke.com/research/katrin#readme>
category:       Language
author:         Nicolas Lenz
maintainer:     nicolas@eisfunke.com
copyright:      2018 Nicolas Lenz
license:        Apache-2.0
build-type:     Simple
extra-source-files:
    README.md

source-repository head
  type: git
  location: https://git.eisfunke.com/research/katrin

library
  exposed-modules:
      Katrin
      Katrin.Algebra
      Katrin.Core
  other-modules:
      Paths_katrin
  hs-source-dirs:
      src
  build-depends:
      base >=4.7 && <5
    , text
  default-language: Haskell2010

executable katrin
  main-is: Main.hs
  other-modules:
      Paths_katrin
  hs-source-dirs:
      app
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , katrin
    , text
  default-language: Haskell2010

test-suite katrin-test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
      Paths_katrin
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , katrin
    , quickcheck-instances
    , tasty
    , tasty-quickcheck
    , text
  default-language: Haskell2010
+3 −3
Original line number Diff line number Diff line
@@ -4,17 +4,17 @@ license: Apache-2.0
git:                 "https://git.eisfunke.com/research/katrin"
author:              "Nicolas Lenz"
maintainer:          "nicolas@eisfunke.com"
copyright:           "2018 Nicolas Lenz"
copyright:           "2018-2019 Nicolas Lenz"

extra-source-files:
- README.md

synopsis:            Experimental functional and dependently-typet programming language
synopsis:            Experimental functional and dependently-typed programming language
category:            Language
description:         Please see the README at <https://git.eisfunke.com/research/katrin#readme>

dependencies:
- base >= 4.7 && < 5
- base
- text

library:
+1 −4
Original line number Diff line number Diff line
resolver: lts-13.0

packages:
- .
resolver: lts-13.27
Loading