-
Notifications
You must be signed in to change notification settings - Fork 2
/
libnix.cabal
56 lines (52 loc) · 1.78 KB
/
libnix.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
name: libnix
version: 0.4.1.0
synopsis: Bindings to the nix package manager
description: Use the nix package manager from Haskell. All modules are designed to be imported qualified.
category: Foreign, Nix
homepage: https://github.com/Profpatsch/libnix-haskell#readme
bug-reports: https://github.com/Profpatsch/libnix-haskell/issues
license: GPL-3
license-file: LICENSE
author: Profpatsch
maintainer: [email protected]
build-type: Simple
cabal-version: >=1.10
extra-source-files:
LICENSE
CHANGELOG.md
README.md
shell.nix
source-repository head
type: git
location: https://github.com/Profpatsch/libnix-haskell
library
exposed-modules: Foreign.Nix.Shellout
, Foreign.Nix.Shellout.Prefetch
, Foreign.Nix.Shellout.Types
other-modules: Foreign.Nix.Shellout.Helpers
build-depends: base >=4.9 && <5.0
, aeson >=1.0.0.0
, bytestring
, deepseq
, errors >=2.2.0
, filepath
, mtl
, process
, text
-- hs-source-dirs:
ghc-options: -Wall
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: tests
other-modules: TestShellout
build-depends: base
, directory
, errors
, text
, libnix
, tasty
, tasty-hunit
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
default-language: Haskell2010