haskell-cryptocipher: update to version 0.4.0

This commit is contained in:
Peter Simons 2013-01-16 12:42:13 +01:00
parent f5a15bfffc
commit 1026de58a1
1 changed files with 7 additions and 6 deletions

View File

@ -1,19 +1,20 @@
{ cabal, cereal, cpu, cryptoApi, cryptoPubkeyTypes, primitive { cabal, cereal, cipherAes, cipherRc4, cpu, cryptoApi
, tagged, vector , cryptoPubkeyTypes, primitive, tagged, vector
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "cryptocipher"; pname = "cryptocipher";
version = "0.3.7"; version = "0.4.0";
sha256 = "14qhi3969q1h9n85flb7wwsr50gdn63q7pmcpm2npy5vkp34lkp5"; sha256 = "1qbnhzbzypin7h62sn2sibij7clsgmaiq24q3xhgbjrirb6bhqf0";
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
buildDepends = [ buildDepends = [
cereal cpu cryptoApi cryptoPubkeyTypes primitive tagged vector cereal cipherAes cipherRc4 cpu cryptoApi cryptoPubkeyTypes
primitive tagged vector
]; ];
meta = { meta = {
homepage = "http://github.com/vincenthz/hs-cryptocipher"; homepage = "http://github.com/vincenthz/hs-cryptocipher";
description = "Symmetrical Block, Stream and PubKey Ciphers"; description = "Symmetrical block and stream ciphers";
license = self.stdenv.lib.licenses.bsd3; license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms; platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ]; maintainers = [ self.stdenv.lib.maintainers.andres ];