forked from mirrors/nixpkgs
haskell-cipher-aes128: add version 0.5
This commit is contained in:
parent
5b37e9b543
commit
6646b80027
14
pkgs/development/libraries/haskell/cipher-aes128/default.nix
Normal file
14
pkgs/development/libraries/haskell/cipher-aes128/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ cabal, cereal, cryptoApi, tagged }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "cipher-aes128";
|
||||
version = "0.5";
|
||||
sha256 = "14rwnz0nwmy1zch1ywjxf2fgfs1xj84l4n785rhb6npmx6k7rmqd";
|
||||
buildDepends = [ cereal cryptoApi tagged ];
|
||||
meta = {
|
||||
homepage = "https://github.com/TomMD/cipher-aes128";
|
||||
description = "AES128 using AES-NI when available";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -722,6 +722,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
cipherAes = callPackage ../development/libraries/haskell/cipher-aes {};
|
||||
|
||||
cipherAes128 = callPackage ../development/libraries/haskell/cipher-aes128 {};
|
||||
|
||||
cipherBlowfish = callPackage ../development/libraries/haskell/cipher-blowfish {};
|
||||
|
||||
cipherCamellia = callPackage ../development/libraries/haskell/cipher-camellia {};
|
||||
|
|
Loading…
Reference in a new issue