packages feed

human-readable-duration-0.1.0.0: human-readable-duration.cabal

name:                human-readable-duration
version:             0.1.0.0
synopsis:            Provide duration helper
homepage:            http://github.com/yogsototh/human-readable-duration#readme
license:             BSD3
license-file:        LICENSE
author:              Yann Esposito
maintainer:          yann.esposito@gmail.com
category:            Time
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10
description:
    This is a minimal Haskell library to display duration.
    .
    > let duration = 2 * ms + 3 * oneSecond + 2 * minute + 33*day + 2*year
    > humanReadableDuration duration
    > -- will return: "2 years 33 days 2 min 3s 32ms"
    > getYears duration
    > -- will return 2
    > getDays duration
    > -- will return 730
    > getMs duration
    > -- will return 730

library
  hs-source-dirs:      src
  exposed-modules:     Data.Duration
  build-depends:       base >= 4.7 && < 5
  default-language:    Haskell2010

-- test-suite human-readable-duration-test
--   type:                exitcode-stdio-1.0
--   hs-source-dirs:      test
--   main-is:             Spec.hs
--   build-depends:       base
--                      , human-readable-duration
--   ghc-options:         -threaded -rtsopts -with-rtsopts=-N
--   default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/yogstoth/human-readable-duration