Popularity
3.7
Growing
Activity
0.0
Stable
5
1
3
Monthly Downloads: 9
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags:
System
Latest version: v3.0.0.4
Hclip alternatives and similar packages
Based on the "System" category.
Alternatively, view Hclip alternatives based on common mentions on social networks and blogs.
-
ghc-hotswap
DISCONTINUED. Example code for how we swap compiled code within a running Haskell process. -
nix-deploy
DISCONTINUED. Deploy software or an entire NixOS system configuration to another NixOS system -
plugins
Dynamic linking and runtime evaluation of Haskell, and C, including dependency chasing and package resolution. -
ascii-progress
A simple Haskell progress bar for the console. Heavily borrows from TJ Holowaychuk's Node.JS project -
cef
DISCONTINUED. A Haskell library for CEF (Commont Event Format) [GET https://api.github.com/repos/picussecurity/haskell-cef: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository] -
language-puppet
A library to work with Puppet manifests, test them and eventually replace everything ruby.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of Hclip or a related project?
Popular Comparisons
README
Hclip
A small cross-platform library for reading and modifying the system clipboard.
Hclip works on Windows, Mac OS X and Linux (but see the requirements below!).
Requirements
- Windows: No additional requirements.
- Mac OS X: Requires the pbcopy and pbpaste commands, which ship with Mac OS X.
- Linux: Requires xclip or xsel installed.
Example Usage
λ: :m System.Hclip
λ: setClipboard "Haskell"
λ: getClipboard
"Haskell"
λ: modifyClipboard (reverse . map toUpper)
"LLEKSAH"
λ: :m +Control.Exception
λ: let f = zipWith ($) (cycle [toUpper, toLower])
λ: try (modifyClipboard (reverse . f)) :: IO (Either ClipboardException String)
Right "HaSkElL"