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

cryptonite-conduit: init at 0.2.2

parent acb95b66
No related merge requests found
...@@ -196,6 +196,7 @@ let packages = ...@@ -196,6 +196,7 @@ let packages =
, cursor-gen = H.callHackage "cursor-gen" "0.4.0.0" , cursor-gen = H.callHackage "cursor-gen" "0.4.0.0"
, cursor = H.callHackage "cursor" "0.3.2.0" , cursor = H.callHackage "cursor" "0.3.2.0"
, cryptonite = H.callHackage "cryptonite" "0.30" , cryptonite = H.callHackage "cryptonite" "0.30"
, cryptonite-conduit = H.callHackage "cryptonite-conduit" "0.2.2"
, cryptohash-md5 = H.callHackage "cryptohash-md5" "0.11.101.0" , cryptohash-md5 = H.callHackage "cryptohash-md5" "0.11.101.0"
, cryptohash-sha1 = H.callHackage "cryptohash-sha1" "0.11.101.0" , cryptohash-sha1 = H.callHackage "cryptohash-sha1" "0.11.101.0"
, cryptohash-sha256 = H.callHackage "cryptohash-sha256" "0.11.102.1" , cryptohash-sha256 = H.callHackage "cryptohash-sha256" "0.11.102.1"
......
...@@ -281,6 +281,8 @@ self: with pkgs.haskell.lib; { ...@@ -281,6 +281,8 @@ self: with pkgs.haskell.lib; {
cryptonite = self.callPackage (./pkgs/cryptonite.nix) { }; cryptonite = self.callPackage (./pkgs/cryptonite.nix) { };
cryptonite-conduit = self.callPackage (./pkgs/cryptonite-conduit.nix) { };
csv = self.callPackage (./pkgs/csv.nix) { }; csv = self.callPackage (./pkgs/csv.nix) { };
cursor = self.callPackage (./pkgs/cursor.nix) { }; cursor = self.callPackage (./pkgs/cursor.nix) { };
......
{ mkDerivation
, base
, bytestring
, conduit
, conduit-combinators
, conduit-extra
, cryptonite
, exceptions
, lib
, memory
, resourcet
, tasty
, tasty-hunit
, tasty-quickcheck
, transformers
}:
mkDerivation {
pname = "cryptonite-conduit";
version = "0.2.2";
sha256 = "705d69ab3f79b7b8810c7b9e7da81a1c6686b6a4323b1e78150576a25a658dae";
revision = "1";
editedCabalFile = "1hh2nzfz4qpxgivfilgk4ll416lph8b2fdkzpzrmqfjglivydfmz";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
conduit
conduit-extra
cryptonite
exceptions
memory
resourcet
transformers
];
testHaskellDepends = [
base
bytestring
conduit
conduit-combinators
cryptonite
memory
tasty
tasty-hunit
tasty-quickcheck
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell-crypto/cryptonite-conduit";
description = "cryptonite conduit";
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