1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
name: MonadRandom
version: 0.1.13
synopsis: Random-number generation monad.
description: Support for computations which consume random values.
license: OtherLicense
license-file: LICENSE
author: Cale Gibbard and others
maintainer: Brent Yorgey <byorgey@gmail.com>
bug-reports: https://github.com/byorgey/MonadRandom/issues
category: Control
build-type: Simple
cabal-version: >=1.8
extra-source-files: CHANGES.markdown
source-repository head
type: git
location: git://github.com/byorgey/MonadRandom.git
library
exposed-modules: Control.Monad.Random, Control.Monad.Random.Class
build-depends: base >= 2 && < 5, transformers, mtl, random
ghc-options: -Wall
|