summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/cprng-aes/default.nix
blob: fb6d2ff456b8faa0c4eb1904de9f40773493e7ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, byteable, cipherAes, cryptoRandom, random }:

cabal.mkDerivation (self: {
  pname = "cprng-aes";
  version = "0.5.1";
  sha256 = "1bw76y2krcshimvwzph76d69bdfaxfi21w4dxfslmqm78knlls47";
  buildDepends = [ byteable cipherAes cryptoRandom random ];
  meta = {
    homepage = "http://github.com/vincenthz/hs-cprng-aes";
    description = "Crypto Pseudo Random Number Generator using AES in counter mode";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})