-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nix(ldfi2): add stylish-haskell and cabal-fmt
- Loading branch information
1 parent
7961c02
commit 63fd7be
Showing
2 changed files
with
45 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,68 @@ | ||
cabal-version: >=1.10 | ||
name: ldfi | ||
version: 0.0.0 | ||
synopsis: Lineage-driven fault injection | ||
description: See README at <https://github.com/symbiont-io/detsys-testkit/tree/main/src/ldfi#readme> | ||
bug-reports: https://github.com/symbiont-io/detsys-testkit/issues | ||
license: AllRightsReserved | ||
license-file: LICENSE | ||
author: Stevan Andjelkovic | ||
maintainer: [email protected] | ||
copyright: Copyright (c) 2021 Symbiont Inc | ||
category: Testing, Distributed Systems | ||
build-type: Simple | ||
extra-source-files: CHANGELOG.md | ||
tested-with: GHC ==8.10.3 | ||
cabal-version: >=1.10 | ||
name: ldfi | ||
version: 0.0.0 | ||
synopsis: Lineage-driven fault injection | ||
description: | ||
See README at <https://github.com/symbiont-io/detsys-testkit/tree/main/src/ldfi#readme> | ||
|
||
bug-reports: https://github.com/symbiont-io/detsys-testkit/issues | ||
license: AllRightsReserved | ||
license-file: LICENSE | ||
author: Stevan Andjelkovic | ||
maintainer: [email protected] | ||
copyright: Copyright (c) 2021 Symbiont Inc | ||
category: Testing, Distributed Systems | ||
build-type: Simple | ||
extra-source-files: CHANGELOG.md | ||
tested-with: GHC ==8.10.3 | ||
|
||
library | ||
hs-source-dirs: src/ | ||
exposed-modules: Ldfi | ||
hs-source-dirs: src/ | ||
exposed-modules: | ||
Ldfi | ||
Ldfi.Storage | ||
|
||
-- GHC boot library dependencies: | ||
-- (https://gitlab.haskell.org/ghc/ghc/-/blob/master/packages) | ||
build-depends: | ||
base >=4.14 && <4.15 | ||
base >=4.14 && <4.15 | ||
, containers | ||
, githash | ||
, mtl | ||
, sqlite-simple | ||
|
||
-- Other dependencies: | ||
build-depends: | ||
z3 | ||
default-language: Haskell2010 | ||
build-depends: z3 | ||
default-language: Haskell2010 | ||
|
||
test-suite test | ||
type: exitcode-stdio-1.0 | ||
hs-source-dirs: test/ | ||
main-is: Main.hs | ||
type: exitcode-stdio-1.0 | ||
hs-source-dirs: test/ | ||
main-is: Main.hs | ||
build-depends: | ||
base | ||
, containers | ||
, HUnit | ||
, ldfi | ||
, tasty | ||
, tasty-hunit | ||
build-depends: | ||
z3 | ||
|
||
build-depends: z3 | ||
other-modules: | ||
Driver | ||
LdfiTest | ||
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-ignore-asserts | ||
default-language: Haskell2010 | ||
|
||
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-ignore-asserts | ||
default-language: Haskell2010 | ||
|
||
executable ldfi | ||
hs-source-dirs: app/ | ||
main-is: Main.hs | ||
hs-source-dirs: app/ | ||
main-is: Main.hs | ||
build-depends: | ||
base | ||
, ldfi | ||
default-language: Haskell2010 | ||
|
||
default-language: Haskell2010 | ||
|
||
source-repository head | ||
type: git | ||
|