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

cryptohash-sha256: init at 0.11.102.1

parent 8b86924a
Branches
No related merge requests found
......@@ -182,6 +182,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "cursor-gen" "0.4.0.0"
, callHackage "cryptonite" "0.30"
, callHackage "cryptohash-sha1" "0.11.101.0"
, callHackage "cryptohash-sha256" "0.11.102.1"
, callHackage "cryptohash" "0.11.9"
, callHackage "daemons" "0.3.0"
, callHackage "data-clist" "0.2"
......
......@@ -195,6 +195,8 @@ self: with pkgs.haskell.lib; {
cryptohash-sha1 = self.callPackage (./pkgs/cryptohash-sha1.nix) { };
cryptohash-sha256 = self.callPackage (./pkgs/cryptohash-sha256.nix) { };
cryptonite = self.callPackage (./pkgs/cryptonite.nix) { };
cursor = self.callPackage (./pkgs/cursor.nix) { };
......
{ mkDerivation
, base
, base16-bytestring
, bytestring
, criterion
, lib
, SHA
, tasty
, tasty-hunit
, tasty-quickcheck
}:
mkDerivation {
pname = "cryptohash-sha256";
version = "0.11.102.1";
sha256 = "73a7dc7163871a80837495039a099967b11f5c4fe70a118277842f7a713c6bf6";
revision = "1";
editedCabalFile = "1hyzqv30rpj920ddnr0zypyjjlh52vyp2d140pn2byayj820rkgs";
configureFlags = [ "-fuse-cbits" ];
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base
base16-bytestring
bytestring
SHA
tasty
tasty-hunit
tasty-quickcheck
];
benchmarkHaskellDepends = [ base bytestring criterion SHA ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/hvr/cryptohash-sha256";
description = "Fast, pure and practical SHA-256 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