nixpkgs/pkgs/development/libraries/haskell/cipher-aes128/default.nix

17 lines
503 B
Nix
Raw Normal View History

2013-12-24 18:07:43 +01:00
{ cabal, cereal, cryptoApi, tagged }:
cabal.mkDerivation (self: {
pname = "cipher-aes128";
version = "0.6.1";
sha256 = "0alvsz6l3ihjbl2ygml6k117j4z3485d7ny6cjv1cz3by688s76g";
isLibrary = true;
isExecutable = true;
2013-12-24 18:07:43 +01:00
buildDepends = [ cereal cryptoApi tagged ];
meta = {
homepage = "https://github.com/TomMD/cipher-aes128";
description = "AES and common modes using AES-NI when available";
2013-12-24 18:07:43 +01:00
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})