summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/monadcryptorandom/default.nix
blob: df63e3ec659166c1210e9c9105dbc2b479598761 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, cryptoApi, mtl, tagged, transformers }:

cabal.mkDerivation (self: {
  pname = "monadcryptorandom";
  version = "0.5.1";
  sha256 = "10waxc0i7hcqlgb9iwcdz0xqkym4ihavgwq466xlaqzzhcpp38d6";
  buildDepends = [ cryptoApi mtl tagged transformers ];
  meta = {
    homepage = "https://github.com/TomMD/monadcryptorandom";
    description = "A monad for using CryptoRandomGen";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})