packages feed

Clipboard-2.2.0.1: Clipboard.cabal

Name:           Clipboard
Version:        2.2.0.1
Author:         Sævar Berg, Daniel Díaz
Homepage:       http://dhelta.net/hprojects/Clipboard
License:        BSD3
License-file:   license
Maintainer:     Daniel Diaz [danieldiaz `at` dhelta `dot` net]
Category:       System
Synopsis:       System clipboard interface.
Bug-reports:    https://github.com/Daniel-Diaz/Clipboard/issues
Description:    
         /Clipboard/ is a library for easily interfacing with the system clipboard with additional unicode support.
         Currently, only in a Windows system.
         .
         For example, if you type:
         .
         > setClipboardString "Hello, World!"
         .
         Then you have @\"Hello, World!\"@ available to be pasted where you want.
         .
         Now, if you type:
         .
         > modifyClipboardString reverse
         .
         You will have @\"!dlroW ,olleH\"@ in your clipboard. So:
         .
         >>> getClipboardString
         "!dlroW ,olleH"
         .
         Changes from last version:
         .
         * New documentation with examples.
Build-type:     Simple
Cabal-version:  >= 1.6
Extra-source-files: README.md

Source-repository head
 type: git
 location: git://github.com/Daniel-Diaz/Clipboard.git

Library
  Exposed-modules: System.Clipboard
  Build-depends:  base == 4.*
                , Win32 == 2.2.*