packages feed

pipeclip-0.1.0.0: pipeclip.cabal

name:                pipeclip
version:             0.1.0.0
synopsis:            Open your editor, pipe the output to the system clipboard
description:         
  This opens up your @$EDITOR@ or @$VISUAL@ using the 
  <https://hackage.haskell.org/package/editor-open @editor-open@ library.> It
  then takes the edited text and sends it to the X11 clipboard.
  .
  As such, this will only work if you have X11. Translated, this is limited to
  Linux and BSD.
homepage:            https://github.com/pharpend/pipeclip
license:             BSD2
license-file:        LICENSE
author:              Peter Harpending
maintainer:          peter@harpending.org
copyright:           Copyright (c) 2015, Peter Harpending.
category:            System, Text
build-type:          Simple
cabal-version:       >=1.10
bug-reports:         https://github.com/pharpend/pipeclip/issues
extra-source-files:  
  LICENSE
  README.md
data-files:  
  README.md
  LICENSE

executable pipeclip
  main-is:             pipeclip.hs
  other-modules:       
    Paths_pipeclip
  other-extensions:    
    CPP
    MultiWayIf
    OverloadedStrings
  default-language:    Haskell2010
  build-depends:
      base ==4.*
    , bytestring
    , editor-open
    , Hclip
    , safe

source-repository head
  type: git
  location: git://github.com/pharpend/pipeclip.git

source-repository this
  type: git
  location: git://github.com/pharpend/pipeclip.git
  tag: master