-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
dconf2nix.cabal
53 lines (49 loc) · 1.74 KB
/
dconf2nix.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
cabal-version: 2.4
name: dconf2nix
version: 0.1.1
synopsis: Convert dconf files to Nix, as expected by Home Manager.
description: A convenient converter of dconf files to Nix, as expected by Home Manager’s dconf settings. So you can Nixify your GNOME Shell configuration ;)
bug-reports: https://github.com/nix-commmunity/dconf2nix/issues
license: Apache-2.0
license-file: LICENSE
author: gvolpe
maintainer: jtojnar@gmail.com
build-type: Simple
extra-source-files: README.md
library
exposed-modules: CommandLine
, DConf
, DConf.Data
, DConf2Nix
, Nix
other-modules: Paths_dconf2nix
build-depends: base
, containers
, optparse-applicative
, parsec >= 3.1.16.0
, text
, utf8-string
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-Suite dconf2nix-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: DConfTest
, DConf2NixTest
build-depends: base
, containers
, dconf2nix
, hedgehog
, parsec
, text
default-language: Haskell2010
ghc-options: -Wall -threaded -with-rtsopts -N
executable dconf2nix
main-is: Main.hs
build-depends: base
, dconf2nix
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -Wall