Popularity
0.6
Declining
Activity
0.0
Stable
1
1
0

Monthly Downloads: 12
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.

Do you think we are missing an alternative of kesha or a related project?

Add another 'System' Package

README

kesha

CI Hackage

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