haskell-cipher-aes: update to version 0.2.4

This commit is contained in:
Peter Simons 2013-09-02 13:20:16 +02:00
parent ba89677256
commit 671fdd4e62

View file

@ -1,11 +1,15 @@
{ cabal, QuickCheck, testFramework, testFrameworkQuickcheck2 }:
{ cabal, byteable, cryptoCipherTests, cryptoCipherTypes, QuickCheck
, securemem, testFramework, testFrameworkQuickcheck2
}:
cabal.mkDerivation (self: {
pname = "cipher-aes";
version = "0.1.8";
sha256 = "171mj9abm0x9bg6mf225mhb25i7xh4v5la5866llb1qrrpvsk1xf";
version = "0.2.4";
sha256 = "13nxxgb55jmrq9m9jpbsdxpj2j2kvdjv8b1c0gp1pvkxhyfzk610";
buildDepends = [ byteable cryptoCipherTypes securemem ];
testDepends = [
QuickCheck testFramework testFrameworkQuickcheck2
byteable cryptoCipherTests cryptoCipherTypes QuickCheck
testFramework testFrameworkQuickcheck2
];
meta = {
homepage = "http://github.com/vincenthz/hs-cipher-aes";