File: disk-free-space.cabal

package info (click to toggle)
haskell-disk-free-space 0.1.0.1-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 56 kB
  • sloc: makefile: 4; haskell: 2
file content (29 lines) | stat: -rw-r--r-- 1,000 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name:                disk-free-space
version:             0.1.0.1
synopsis:            Retrieve information about disk space usage
description:
  A cross-platform library retrieve information about disk space usage.
homepage:            https://github.com/redneb/disk-free-space
bug-reports:         https://github.com/redneb/disk-free-space/issues
license:             BSD3
license-file:        LICENSE
author:              Marios Titas <rednebΑΤgmxDΟΤcom>
maintainer:          Marios Titas <rednebΑΤgmxDΟΤcom>
category:            System, Filesystem
build-type:          Simple
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://github.com/redneb/disk-free-space.git

library
  exposed-modules:     System.DiskSpace
  build-depends:       base >=4.6 && <5
  if os(windows)
    build-depends:       Win32 >=2.2
    cpp-options:         -DCABAL_OS_WINDOWS
  else
    build-tools:         hsc2hs
  default-language:    Haskell2010
  ghc-options:         -Wall