2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, MonadPrompt, mtl, randomSource, transformers }:
|
2011-08-07 22:25:40 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 22:25:40 +02:00
|
|
|
pname = "rvar";
|
|
|
|
version = "0.2";
|
|
|
|
sha256 = "1in2qn1clv9b7ijyllhjflh9zdkna31hpyclhlkfnsc6899z3y1f";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [ MonadPrompt mtl randomSource transformers ];
|
2011-08-07 22:25:40 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/mokus0/random-fu";
|
|
|
|
description = "Random Variables";
|
|
|
|
license = self.stdenv.lib.licenses.publicDomain;
|
2011-08-10 01:00:20 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-07 22:25:40 +02:00
|
|
|
};
|
|
|
|
})
|