Popularity
0.7
Growing
Activity
0.0
Stable
1
1
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.
-
optparse-generic
Auto-generate a command-line parser for your datatype -
hapistrano
Deploy tool for Haskell applications, like Capistrano for Rails -
nix-deploy
Deploy software or an entire NixOS system configuration to another NixOS system -
ghc-hotswap
Example code for how we swap compiled code within a running Haskell process. -
typed-process
Alternative API for processes, featuring more type safety -
openssh-github-keys
Control SSH access to your servers via GitHub teams -
atomic-write
Writes files atomically in Haskell while preserving permissions -
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. -
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 -
directory-contents
Recursively build a tree of directory contents, avoiding symlink cycles
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