summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/cipher-aes128/default.nix
blob: c8be6bcb0dcf1e68b5a793f326fcc32e0de717fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
  };
})