-
Notifications
You must be signed in to change notification settings - Fork 1
/
intero-nix-shim.cabal
40 lines (37 loc) · 1.24 KB
/
intero-nix-shim.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
name: intero-nix-shim
version: 0.1.2
homepage: https://github.com/michalrus/intero-nix-shim
license: Apache-2.0
license-file: LICENSE
author: Michal Rus
maintainer: m@michalrus.com
copyright: 2017 Michal Rus
-- category:
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
ghc-options: -Wall -Werror
default-extensions: LambdaCase
exposed-modules: InteroNixShim.Main
build-depends: base
, optparse-applicative
, filepath
, directory
, split
, posix-escape
, unix
default-language: Haskell2010
c-sources: src/cbits/silence_stderr.c
cc-options: -Wall -Werror -pedantic
executable intero-nix-shim-exe
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, intero-nix-shim
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/michalrus/intero-nix-shim