Popularity
0.5
Stable
Activity
0.0
Stable
1
0
0
Monthly Downloads: 1
Programming language: Haskell
License: MIT License
Tags:
System
Latest version: v0.1.0.1
kesha alternatives and similar packages
Based on the "System" category.
Alternatively, view kesha alternatives based on common mentions on social networks and blogs.
-
ghc-hotswap
Example code for how we swap compiled code within a running Haskell process. -
nix-deploy
Deploy software or an entire NixOS system configuration to another NixOS system -
optparse-generic
Auto-generate a command-line parser for your datatype -
hapistrano
Deploy tool for Haskell applications, like Capistrano for Rails -
typed-process
Alternative API for processes, featuring more type safety -
system-fileio
Contains the system-filepath and system-fileio packages -
language-puppet
A library to work with Puppet manifests, test them and eventually replace everything ruby. -
ascii-progress
A simple Haskell progress bar for the console. Heavily borrows from TJ Holowaychuk's Node.JS project -
plugins
Dynamic linking and runtime evaluation of Haskell, and C, including dependency chasing and package resolution. -
openssh-github-keys
Control SSH access to your servers via GitHub teams -
directory-contents
Recursively build a tree of directory contents, avoiding symlink cycles -
temporary
Portable temporary file and directory support for Windows and Unix.
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of kesha or a related project?
README
kesha
A Haskell library for computing the cryptographic hash of any path.
The implementation is an almost verbatim implementation of nix-hash
, which is the
standard tool used by the Nix package manager.
module Main where
import qualified Kesha
main :: IO ()
main = do
result <- Kesha.hash "some-path"
print result