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

cryptohash-md5: init at 0.11.101.0

parent 9413ac71
No related merge requests found
......@@ -197,6 +197,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "cursor-gen" "0.4.0.0"
, callHackage "cursor" "0.3.2.0"
, callHackage "cryptonite" "0.30"
, callHackage "cryptohash-md5" "0.11.101.0"
, callHackage "cryptohash-sha1" "0.11.101.0"
, callHackage "cryptohash-sha256" "0.11.102.1"
, callHackage "cryptohash" "0.11.9"
......
......@@ -235,6 +235,8 @@ self: with pkgs.haskell.lib; {
cryptohash = self.callPackage (./pkgs/cryptohash.nix) { };
cryptohash-md5 = self.callPackage (./pkgs/cryptohash-md5.nix) { };
cryptohash-sha1 = self.callPackage (./pkgs/cryptohash-sha1.nix) { };
cryptohash-sha256 = self.callPackage (./pkgs/cryptohash-sha256.nix) { };
......
{ mkDerivation
, base
, base16-bytestring
, bytestring
, criterion
, lib
, pureMD5
, tasty
, tasty-hunit
, tasty-quickcheck
}:
mkDerivation {
pname = "cryptohash-md5";
version = "0.11.101.0";
sha256 = "3b08db0ae39df2b44e83053ad30d7546a4c6200a852c22a240a7e03ae1080f05";
revision = "1";
editedCabalFile = "0s2f5cd46lqymmbpcnzlxsim5qk8yrr52j5mmi31zrhd24b3bqln";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base
base16-bytestring
bytestring
pureMD5
tasty
tasty-hunit
tasty-quickcheck
];
benchmarkHaskellDepends = [ base bytestring criterion ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/hvr/cryptohash-md5";
description = "Fast, pure and practical MD5 implementation";
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