File: setenv.cabal

package info (click to toggle)
haskell-setenv 0.1.1.3-12
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 56 kB
  • sloc: haskell: 59; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,006 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
30
31
32
33
name:             setenv
version:          0.1.1.3
license:          MIT
license-file:     LICENSE
copyright:        (c) 2012-2015 Simon Hengel
author:           Simon Hengel <sol@typeful.net>
maintainer:       Simon Hengel <sol@typeful.net>
category:         System
synopsis:         A cross-platform library for setting environment variables
description:      A cross-platform library for setting environment variables
                  .
                  Note: Since @base- 4.7.0.0@ the functions @setEnv@ and
                  @unsetEnv@ are provided by @System.Environment@.
                  @System.SetEnv@ merily re-exports those functions when built
                  with @base >= 4.7@.
build-type:       Simple
cabal-version:    >= 1.8

source-repository head
  type: git
  location: https://github.com/sol/setenv

library
  ghc-options:
      -Wall
  hs-source-dirs:
      src
  exposed-modules:
      System.SetEnv
  build-depends:
      base == 4.*
  if !os(windows)
    build-depends: unix