packages feed

hrfsize-0.0.2: hrfsize.cabal

cabal-version: 1.12

name:           hrfsize
version:        0.0.2
description:    Simple Haskell library for determining size of file in human readable format
synopsis:       File size in human readable format
homepage:       https://github.com/librerush/hrfsize#readme
bug-reports:    https://github.com/librerush/hrfsize/issues
author:         Dias Kozhabay <librerush@tutanota.com>
maintainer:     Dias Kozhabay <librerush@tutanota.com>
license:        BSD3
license-file:   LICENSE
category:       System
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/librerush/hrfsize

library
  exposed-modules:
      System.HrfSize
  other-modules:
      Paths_hrfsize
  hs-source-dirs:
      src
  build-depends:
      base >=4.7 && <5
  default-language: Haskell2010

test-suite hrfsize-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_hrfsize
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , tasty
    , tasty-hunit
    , process
    , hrfsize
  default-language: Haskell2010