-
Notifications
You must be signed in to change notification settings - Fork 0
/
flakeit.cabal
60 lines (54 loc) · 1.43 KB
/
flakeit.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
cabal-version: 3.0
name: flakeit
version: 0.1.0
synopsis: Make it easier to work with Nix flake templates
description: Make it easier to work with Nix flake templates
homepage: https://github.com/jedimahdi/flakeit#readme
bug-reports: https://github.com/jedimahdi/flakeit/issues
license: MIT
license-file: LICENSE
category: CLI, Development
author: Mahdi Seyedan
maintainer: [email protected]
build-type: Simple
extra-doc-files: README.md
source-repository head
type: git
location: https://github.com/jedimahdi/flakeit.git
common common-options
ghc-options:
-Wall -Wcompat -Wunused-packages -Wredundant-constraints
build-depends: base
default-language: GHC2021
default-extensions:
DuplicateRecordFields
LambdaCase
OverloadedRecordDot
OverloadedStrings
library
import: common-options
hs-source-dirs: src
exposed-modules:
FlakeIt
FlakeIt.Cli
FlakeIt.Cli.Parser
FlakeIt.DB
FlakeIt.Nix
FlakeIt.Template
autogen-modules: Paths_flakeit
other-modules: Paths_flakeit
build-depends:
, aeson
, binary
, containers
, directory
, filepath
, optparse-applicative
, text
, typed-process
executable flakeit
import: common-options
hs-source-dirs: app
main-is: Main.hs
build-depends: flakeit
ghc-options: -threaded -rtsopts -with-rtsopts=-N