sha256

Pure Haskell SHA-256, HMAC-SHA256 as specified by RFC's 6234 and 2104.
git clone git://git.ppad.tech/sha256.git
Log | Files | Refs | README | LICENSE

commit 7658d532fc4da747f9d8aad2b4b896d688f0de5a
parent 2d09f74ee2ae5798953fc8811a569f1c71718676
Author: Jared Tobin <jared@jtobin.io>
Date:   Wed, 11 Sep 2024 15:59:44 +0400

meta: enable profiling in flake

Diffstat:
Mflake.nix | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/flake.nix b/flake.nix @@ -16,7 +16,8 @@ hpkgs = pkgs.haskell.packages.ghc981.override { overrides = new: old: { - ${lib} = old.callCabal2nix lib ./. {}; + ${lib} = + old.callCabal2nixWithOptions lib ./. "--enable-profiling" {}; }; };