2013-09-04 14:08:10 +02:00
|
|
|
{ cabal, byteable, cryptoCipherTests, cryptoCipherTypes, QuickCheck
|
|
|
|
, securemem, testFramework, testFrameworkQuickcheck2, vector
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "cipher-camellia";
|
2013-10-10 11:50:46 +02:00
|
|
|
version = "0.0.2";
|
|
|
|
sha256 = "19z2mi1rvp8fsqjdbmrm1hdlxmx61yr55fyknmmn945qrlvx234d";
|
2013-09-04 14:08:10 +02:00
|
|
|
buildDepends = [ byteable cryptoCipherTypes securemem vector ];
|
|
|
|
testDepends = [
|
|
|
|
byteable cryptoCipherTests cryptoCipherTypes QuickCheck
|
|
|
|
testFramework testFrameworkQuickcheck2
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-crypto-cipher";
|
|
|
|
description = "Camellia block cipher primitives";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|