repo.or.cz
/
cabal.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add test cases that reproduce #7241.
[cabal.git]
/
cabal-testsuite
/
PackageTests
/
ExternalCommandSetup
/
custom
/
custom.cabal
blob
0dbc609439b7413a355e1e0dbb121bed2791f402
1
cabal-version: 3.0
2
name: custom
3
version: 0.1.0.0
4
-- synopsis:
5
-- description:
6
license: BSD-3-Clause
7
license-file: LICENSE
8
author: Matthew Pickering
9
maintainer: matthewtpickering@gmail.com
10
-- copyright:
11
build-type: Custom
12
extra-doc-files: CHANGELOG.md
13
-- extra-source-files:
14
15
common warnings
16
ghc-options: -Wall
17
18
custom-setup
19
build-depends: base, Cabal
20
21
library
22
import: warnings
23
exposed-modules: MyLib
24
-- other-modules:
25
-- other-extensions:
26
build-depends: base
27
hs-source-dirs: src
28
default-language: Haskell2010
29