2013-09-02 12:20:16 +01:00
|
|
|
{ cabal, byteable, cryptoCipherTests, cryptoCipherTypes, QuickCheck
|
|
|
|
, securemem, testFramework, testFrameworkQuickcheck2
|
|
|
|
}:
|
2012-08-28 11:18:10 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "cipher-aes";
|
2014-07-03 15:59:51 +01:00
|
|
|
version = "0.2.8";
|
|
|
|
sha256 = "13hg8gxhs7hmni72kp14hmhvfv1kj7fnl83i72bz3aq15vx3z61z";
|
2013-09-02 12:20:16 +01:00
|
|
|
buildDepends = [ byteable cryptoCipherTypes securemem ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2013-09-02 12:20:16 +01:00
|
|
|
byteable cryptoCipherTests cryptoCipherTypes QuickCheck
|
|
|
|
testFramework testFrameworkQuickcheck2
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2012-08-28 11:18:10 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-cipher-aes";
|
|
|
|
description = "Fast AES cipher implementation with advanced mode of operations";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|