-
Notifications
You must be signed in to change notification settings - Fork 19
/
nix-diff.cabal
109 lines (98 loc) · 3.49 KB
/
nix-diff.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
cabal-version: 3.0
name: nix-diff
version: 1.0.20
synopsis: Explain why two Nix derivations differ
description: This package provides a @nix-diff@ executable which
explains why two Nix derivations (i.e. @*.drv@ files)
differ
homepage: https://github.com/Gabriella439/nix-diff
license: BSD-3-Clause
license-file: LICENSE
author: Gabriella Gonzalez
maintainer: [email protected]
copyright: 2024 Gabriella Gonzalez
category: System
build-type: Simple
tested-with: GHC == 9.2.8,
GHC == 9.4.7,
GHC == 9.6.3
extra-source-files: README.md
CHANGELOG.md
common language
default-language: GHC2021
default-extensions:
ApplicativeDo,
BlockArguments,
DeriveAnyClass,
DerivingStrategies,
DerivingVia,
DuplicateRecordFields,
LambdaCase,
MultiWayIf,
NamedFieldPuns,
NoFieldSelectors,
OverloadedRecordDot,
OverloadedStrings,
RecordWildCards,
ghc-options: -Wall
library
import: language
hs-source-dirs: src
exposed-modules:
Nix.Diff
Nix.Diff.Store
Nix.Diff.Types
Nix.Diff.Transformations
Nix.Diff.Render.HumanReadable
build-depends: base >= 4.9 && < 5
, attoparsec >= 0.13 && < 0.15
, aeson
, bytestring >= 0.9 && < 0.13
, containers >= 0.5 && < 0.8
, directory < 1.4
, mtl >= 2.2 && < 2.4
, nix-derivation >= 1.1 && < 1.2
, optparse-applicative >= 0.14.0.0 && < 0.19
, patience >= 0.3 && < 0.4
, text >= 1.2 && < 2.2
, vector >= 0.12 && < 0.14
, process < 1.7
, filepath < 1.5
, QuickCheck < 2.15
, quickcheck-instances < 3.29
, generic-arbitrary < 1.1
, uniplate < 1.17
executable nix-diff
import: language
hs-source-dirs: app
main-is: Main.hs
build-depends: base
, nix-diff
, aeson
, bytestring
, optparse-applicative
, text
, unix < 2.9
, containers
, mtl
test-suite nix-diff-test
import: language
ghc-options: -Wall
hs-source-dirs: test
main-is: Main.hs
other-modules:
Properties
Golden.Tests
Golden.Utils
type: exitcode-stdio-1.0
build-depends: base
, nix-diff
, aeson
, bytestring
, text
, containers
, mtl
, typed-process < 0.2.12
, tasty < 1.6
, tasty-quickcheck < 0.11
, tasty-silver < 3.4