mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 10:47:32 +03:00
215 lines
4.7 KiB
YAML
215 lines
4.7 KiB
YAML
name: juvix
|
|
version: 0.6.1
|
|
license: GPL-3.0-only
|
|
license-file: LICENSE.md
|
|
copyright: (c) 2022- Heliax AG.
|
|
maintainer: The Compilers Team at Heliax AG <hello@heliax.dev>
|
|
author:
|
|
[
|
|
Jonathan Prieto-Cubides,
|
|
Jan Mas Rovira,
|
|
Paul Cadman,
|
|
Lukasz Czajka,
|
|
Github's contributors,
|
|
]
|
|
tested-with: ghc == 9.8.1
|
|
homepage: https://juvix.org
|
|
bug-reports: https://github.com/anoma/juvix/issues
|
|
description: The Juvix compiler
|
|
category: Compilers/Interpreters
|
|
github: anoma/juvix
|
|
|
|
flags:
|
|
# This flag can only be used in an environment that contains static libraries
|
|
# for all dependencies, including libc We use this when doing a static build
|
|
# using the ghc-musl alpine container
|
|
static:
|
|
description: Build static executable
|
|
default: false
|
|
manual: true
|
|
|
|
extra-source-files:
|
|
- README.md
|
|
- assets/css/*.css
|
|
- assets/js/*.js
|
|
- assets/images/*.svg
|
|
- juvix-stdlib/**/*.juvix
|
|
- include/package/**/*.juvix
|
|
- include/package-base/**/*.juvix
|
|
- runtime/include/**/*.h
|
|
- runtime/**/*.a
|
|
- runtime/src/tree/*.jvt
|
|
- runtime/src/vampir/*.pir
|
|
- runtime/src/casm/*.casm
|
|
- runtime/src/nockma/*.nockma
|
|
|
|
dependencies:
|
|
- aeson-better-errors == 0.9.*
|
|
- aeson == 2.2.*
|
|
- ansi-terminal == 1.0.*
|
|
- base == 4.19.*
|
|
- base16-bytestring == 1.0.*
|
|
- blaze-html == 0.9.*
|
|
- bytestring == 0.12.*
|
|
- cereal == 0.5.*
|
|
- containers == 0.6.*
|
|
- cryptohash-sha256 == 0.11.*
|
|
- directory == 1.3.*
|
|
- dlist == 1.0.*
|
|
- edit-distance == 0.2.*
|
|
- effectful == 2.3.*
|
|
- effectful-core == 2.3.*
|
|
- effectful-th == 1.0.*
|
|
- exceptions == 0.10.*
|
|
- extra == 1.7.*
|
|
- file-embed == 0.0.*
|
|
- filelock == 0.1.*
|
|
- filepath == 1.4.*
|
|
- ghc == 9.8.1
|
|
- githash == 0.1.*
|
|
- hashable == 1.4.*
|
|
- language-c == 0.9.*
|
|
- libyaml == 0.1.*
|
|
- megaparsec == 9.6.*
|
|
- commonmark == 0.2.*
|
|
- parsec == 3.1.*
|
|
- microlens-platform == 0.4.*
|
|
- parser-combinators == 1.3.*
|
|
- path == 0.9.*
|
|
- path-io == 1.8.*
|
|
- pretty == 1.1.*
|
|
- prettyprinter == 1.7.*
|
|
- prettyprinter-ansi-terminal == 1.1.*
|
|
- primitive == 0.8.*
|
|
- process == 1.6.*
|
|
- safe == 0.3.*
|
|
- scientific == 0.3.*
|
|
- singletons == 3.0.*
|
|
- singletons-base == 3.3.*
|
|
- singletons-th == 3.3.*
|
|
- Stream == 0.4.*
|
|
- string-interpolate == 0.3.*
|
|
- template-haskell == 2.21.*
|
|
- temporary == 1.3.*
|
|
- text == 2.1.*
|
|
- th-utilities == 0.2.*
|
|
- time == 1.12.*
|
|
- transformers == 0.6.*
|
|
- typed-process == 0.2.*
|
|
- unicode-show == 0.1.*
|
|
- uniplate == 1.6.*
|
|
- unix-compat == 0.7.*
|
|
- unordered-containers == 0.2.*
|
|
- utf8-string == 1.0.*
|
|
- vector == 0.13.*
|
|
- versions == 6.0.*
|
|
- xdg-basedir == 0.2.*
|
|
- yaml == 0.11.*
|
|
|
|
# the tasty dependencies are here to avoid having to recompile
|
|
# juvix when running the tests.
|
|
- tasty
|
|
- tasty-hunit
|
|
- Diff == 0.5.*
|
|
- pretty-show == 1.10.*
|
|
|
|
# benchmarks
|
|
- criterion == 1.6.*
|
|
- statistics == 0.16.*
|
|
- shake == 0.19.*
|
|
- colour == 2.3.*
|
|
- palette == 0.3.*
|
|
|
|
ghc-options:
|
|
# Warnings
|
|
- -Weverything
|
|
- -Wno-all-missed-specialisations
|
|
- -Wno-missed-specialisations
|
|
- -Wno-missing-export-lists
|
|
- -Wno-missing-import-lists
|
|
- -Wno-missing-kind-signatures
|
|
- -Wno-missing-safe-haskell-mode
|
|
- -Wno-missing-role-annotations
|
|
- -Wno-missing-poly-kind-signatures
|
|
- -Wno-safe
|
|
- -Wno-unsafe
|
|
- -Wno-unused-packages
|
|
# HIE Support
|
|
- -fhide-source-paths
|
|
- -fwrite-ide-info -hiedir=.hie
|
|
# Polysemy Support
|
|
- -O2 -flate-specialise -fspecialise-aggressively
|
|
|
|
default-extensions:
|
|
- ApplicativeDo
|
|
- DataKinds
|
|
- DerivingStrategies
|
|
- GADTs
|
|
- GeneralizedNewtypeDeriving
|
|
- ImportQualifiedPost
|
|
- LambdaCase
|
|
- MultiWayIf
|
|
- NoFieldSelectors
|
|
- NoImplicitPrelude
|
|
- OverloadedStrings
|
|
- PatternSynonyms
|
|
- QuasiQuotes
|
|
- RecordWildCards
|
|
- TemplateHaskell
|
|
- TypeFamilyDependencies
|
|
|
|
library:
|
|
source-dirs: src
|
|
verbatim:
|
|
default-language: GHC2021
|
|
|
|
executables:
|
|
juvixbench:
|
|
main: Main.hs
|
|
source-dirs: bench2
|
|
dependencies:
|
|
- juvix
|
|
- tasty-bench == 0.3.*
|
|
- polysemy == 1.9.*
|
|
verbatim:
|
|
default-language: GHC2021
|
|
|
|
juvix:
|
|
main: Main.hs
|
|
source-dirs: app
|
|
dependencies:
|
|
- juvix
|
|
- haskeline == 0.8.*
|
|
- http-conduit == 2.3.*
|
|
- mtl == 2.3.*
|
|
- optparse-applicative == 0.18.*
|
|
- repline == 0.4.*
|
|
- string-interpolate == 0.3.*
|
|
verbatim:
|
|
default-language: GHC2021
|
|
when:
|
|
- condition: flag(static)
|
|
ld-options:
|
|
- -static
|
|
- -pthread
|
|
|
|
tests:
|
|
juvix-test:
|
|
main: Main.hs
|
|
source-dirs: test
|
|
dependencies:
|
|
- juvix
|
|
verbatim:
|
|
default-language: GHC2021
|
|
ghc-options:
|
|
- -threaded
|
|
|
|
benchmarks:
|
|
juvix-bench:
|
|
main: Main.hs
|
|
source-dirs: bench
|
|
dependencies:
|
|
- juvix
|
|
verbatim:
|
|
default-language: GHC2021
|