nixpkgs/pkgs/development/libraries/haskell/monadcryptorandom/default.nix

16 lines
532 B
Nix

{ 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 ];
};
})