forked from purenix-org/purenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
purenix.cabal
62 lines (55 loc) · 1.45 KB
/
purenix.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
cabal-version: 2.4
name: purenix
version: 1.1
license: BSD-3-Clause
build-type: Simple
license-file: LICENSE
-- category:
-- description: description
synopsis:
Nix backend for PureScript. Transpile PureScript code to Nix.
author: Dennis Gosnell, Jonas Carpay
maintainer: Dennis Gosnell <[email protected]>
copyright: 2021 Dennis Gosnell, Jonas Carpay
homepage: https://github.com/purenix-org/purenix
tested-with: GHC ==8.10.4
extra-doc-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: git://github.com/purenix-org/purenix
common common-options
build-depends: base >=4.9 && <5
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Widentities -Wincomplete-uni-patterns
-Wincomplete-record-updates -Wredundant-constraints
-fhide-source-paths -Wpartial-fields
library
import: common-options
hs-source-dirs: src
exposed-modules:
PureNix.Convert
PureNix.Expr
PureNix.Identifiers
PureNix.Main
PureNix.Prelude
PureNix.Print
build-depends:
, aeson
, bytestring
, containers
, directory
, filepath
, microlens-platform
, mtl
, pretty-simple
, purescript ^>=0.15
, text
executable purenix
import: common-options
hs-source-dirs: app
main-is: Main.hs
build-depends: purenix
ghc-options: -threaded -rtsopts -with-rtsopts=-N