haskell-crypto-conduit: added version 0.1.3.1

svn path=/nixpkgs/trunk/; revision=32177
This commit is contained in:
Peter Simons 2012-02-10 11:32:45 +00:00
parent eb9badcd21
commit cd306852ad
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ cabal, cereal, conduit, cryptoApi, transformers }:
cabal.mkDerivation (self: {
pname = "crypto-conduit";
version = "0.1.3.1";
sha256 = "0b8n2njz2ccdb9gql79l96jgv1nlq4ls09d25a2yy9f69w7h1ww5";
buildDepends = [ cereal conduit cryptoApi transformers ];
meta = {
homepage = "https://github.com/meteficha/crypto-conduit";
description = "Conduit interface for cryptographic operations (from crypto-api)";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -578,6 +578,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
cryptocipher = callPackage ../development/libraries/haskell/cryptocipher {};
cryptoConduit = callPackage ../development/libraries/haskell/crypto-conduit {};
cryptohash = callPackage ../development/libraries/haskell/cryptohash {};
cryptoPubkeyTypes = callPackage ../development/libraries/haskell/crypto-pubkey-types {};