this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 89 lines 2.6 kB view raw
1cabal-version: 3.0 2 3-- The cabal-version field refers to the version of the .cabal specification, 4-- and can be different from the cabal-install (the tool) version and the 5-- Cabal (the library) version you are using. As such, the Cabal (the library) 6-- version used must be equal or greater than the version stated in this field. 7-- Starting from the specification version 2.2, the cabal-version field must be 8-- the first thing in the cabal file. 9 10-- Initial package description 'nls' generated by 11-- 'cabal init'. For further documentation, see: 12-- http://haskell.org/cabal/users-guide/ 13-- 14-- The name of the package. 15name: nls 16 17-- The package version. 18-- See the Haskell package versioning policy (PVP) for standards 19-- guiding when and how versions should be incremented. 20-- https://pvp.haskell.org 21-- PVP summary: +-+------- breaking API changes 22-- | | +----- non-breaking API additions 23-- | | | +--- code changes with no API change 24version: 0.1.0.0 25 26-- A short (one-line) description of the package. 27-- synopsis: 28 29-- A longer description of the package. 30-- description: 31 32-- URL for the project homepage or repository. 33homepage: https://tangled.org/nathanjgill.uk/nls 34 35-- The license under which the package is released. 36license: BSD-2-Clause 37 38-- The file containing the license text. 39license-file: LICENSE 40 41-- The package author(s). 42author: Nathan Gill 43 44-- An email address to which users can send suggestions, bug reports, and patches. 45maintainer: nathan@nathanjgill.uk 46 47-- A copyright notice. 48-- copyright: 49build-type: Simple 50 51-- Extra doc files to be distributed with the package, such as a CHANGELOG or a README. 52extra-doc-files: CHANGELOG.md 53 54-- Extra source files to be distributed with the package, such as examples, or a tutorial module. 55-- extra-source-files: 56 57common warnings 58 ghc-options: -Wall 59 60executable nls 61 -- Import common warning flags. 62 import: warnings 63 64 -- .hs or .lhs file containing the Main module. 65 main-is: Main.hs 66 67 -- Modules included in this executable, other than Main. 68 other-modules: 69 Builtin 70 Eval 71 Parser 72 Types 73 Util 74 75 -- LANGUAGE extensions used by modules in this package. 76 -- other-extensions: 77 78 -- Other library packages from which modules are imported. 79 build-depends: 80 , base ^>=4.20.2.0 81 , containers >=0.7 82 , megaparsec >=9.7.0 83 , text >=2.1.3 84 85 -- Directories containing source files. 86 hs-source-dirs: src 87 88 -- Base language which the package is written in. 89 default-language: Haskell2010