Clipboard-2.2.0.3: Clipboard.cabal
Name: Clipboard
Version: 2.2.0.3
Author: Sævar Berg, Daniel Díaz
Homepage: http://haskell.org/haskellwiki/Clipboard
License: BSD3
License-file: license
Maintainer: Daniel Díaz [dhelta `dot` diaz `at` gmail `dot` com]
Category: System
Stability: Stable
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 wherever you want.
.
Now, if you type:
.
> $ modifyClipboardString reverse
.
You will have @\"!dlroW ,olleH\"@ in your clipboard. So:
.
> $ getClipboardString
> "!dlroW ,olleH"
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
Extensions: CPP
if os(windows)
Build-depends: base == 4.*
, Win32 >= 2.2.0.0 && < 2.4
else
Build-depends: base == 4.*