nixpkgs/pkgs/development/libraries/haskell/rvar/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

16 lines
521 B
Nix

{ cabal, MonadPrompt, mtl, randomSource, transformers }:
cabal.mkDerivation (self: {
pname = "rvar";
version = "0.2.0.1";
sha256 = "17wgd4gc1hn04dck168nkyzn9jyipgbysxsznyzy2z36vafqqqbm";
buildDepends = [ MonadPrompt mtl randomSource transformers ];
meta = {
homepage = "https://github.com/mokus0/random-fu";
description = "Random Variables";
license = self.stdenv.lib.licenses.publicDomain;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})