blob: ff322a4e021a4f1faaaced6767ef6e29412ba1d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
name: bkpcabal06
version: 0.1.0.0
license: BSD3
author: Edward Z. Yang
maintainer: ezyang@cs.stanford.edu
build-type: Simple
cabal-version: 2.0
library sig
signatures: P
reexported-modules: Prelude
build-depends: base
default-language: Haskell2010
hs-source-dirs: sig
library impl
exposed-modules: P
build-depends: base
default-language: Haskell2010
hs-source-dirs: impl
library
build-depends: sig, impl
default-language: Haskell2010
|