kesha-0.1.0.0: README.md
# `kesha`
[](https://github.com/jmackie/kesha/actions?query=workflow%3ACI)
[](https://hackage.haskell.org/package/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](https://nixos.org/nix/) package manager.
```haskell
module Main where
import qualified Kesha
main :: IO ()
main = do
result <- Kesha.hash "some-path"
print result
```