20 lines
700 B
Nix
20 lines
700 B
Nix
{ cabal, byteable, cryptoCipherTests, cryptoCipherTypes, QuickCheck
|
|
, securemem, testFramework, testFrameworkQuickcheck2
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "cipher-aes";
|
|
version = "0.2.7";
|
|
sha256 = "1a5viy2frkdqhzzlipd2ik89a04gv95v4b98lgpsas2958r9c9yp";
|
|
buildDepends = [ byteable cryptoCipherTypes securemem ];
|
|
testDepends = [
|
|
byteable cryptoCipherTests cryptoCipherTypes QuickCheck
|
|
testFramework testFrameworkQuickcheck2
|
|
];
|
|
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;
|
|
};
|
|
})
|