packages feed

editor-open-0.1.0.0: editor-open.cabal

name:                editor-open
version:             0.1.0.0
synopsis:            Open the user's @$EDITOR@ for text input.
description:
  You know when you run @git commit@, and an editor pops open so you can enter a
  commit message? This is a Haskell library that does that.
  .
  This library isn't very portable. It relies on the @$EDITOR@ environment
  variable. The concept only exists on *nix systems.
homepage:            https://notabug.org/pharpend/editor-open
license:             Apache-2.0
license-file:        LICENSE
author:              Peter Harpending
maintainer:          peter@harpending.org
copyright:           Copyright 2015 Peter Harpending
category:            Text
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  
  README.md

library
  -- other-modules:       
  -- other-extensions:    
  hs-source-dirs:      src
  default-language:    Haskell2010
  default-extensions:
    LambdaCase
    MultiWayIf
    OverloadedStrings
  build-depends:
     base ==4.8.*
   , bytestring
   , process >=1.2
   , temporary
   , unix
  exposed-modules:     
    Text.Editor

source-repository head 
  type: git
  location: https://notabug.org/pharpend/editor-open.git

source-repository this
  type: git
  location: https://notabug.org/pharpend/editor-open.git
  tag: 0.1.0.0