Skip to content
Snippets Groups Projects
Commit 5b296b5a authored by Daniel Firth's avatar Daniel Firth
Browse files

cryptohash: init at 0.11.9

parent b3e177d5
Branches
Tags
No related merge requests found
......@@ -163,6 +163,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(Some "cursor-dirforest-gen")
, callHackage "cryptonite" "0.30"
, callHackage "cryptohash-sha1" "0.11.101.0"
, callHackage "cryptohash" "0.11.9"
, callHackage "data-fix" "0.3.2"
, callHackage "dec" "0.0.5"
, callHackage "deriving-aeson" "0.2.8"
......
......@@ -157,6 +157,8 @@ final: prev: with pkgs.haskell.lib; {
criterion = prev.callPackage (./pkgs/criterion.nix) { };
cryptohash = prev.callPackage (./pkgs/cryptohash.nix) { };
cryptohash-sha1 = prev.callPackage (./pkgs/cryptohash-sha1.nix) { };
cryptonite = prev.callPackage (./pkgs/cryptonite.nix) { };
......
{ mkDerivation
, base
, byteable
, bytestring
, criterion
, cryptonite
, ghc-prim
, HUnit
, lib
, memory
, QuickCheck
, tasty
, tasty-hunit
, tasty-quickcheck
}:
mkDerivation {
pname = "cryptohash";
version = "0.11.9";
sha256 = "c28f847fc1fcd65b6eea2e74a100300af940919f04bb21d391f6a773968f22fb";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
byteable
bytestring
cryptonite
ghc-prim
memory
];
testHaskellDepends = [
base
byteable
bytestring
HUnit
QuickCheck
tasty
tasty-hunit
tasty-quickcheck
];
benchmarkHaskellDepends = [ base byteable bytestring criterion ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/vincenthz/hs-cryptohash";
description = "collection of crypto hashes, fast, pure and practical";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment