3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
409 B
Nix
15 lines
409 B
Nix
{ cabal, mtl }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "MonadPrompt";
|
|
version = "1.0.0.3";
|
|
sha256 = "0v6svyiajri7c463bz1a1x1nin5s9s7c3s7y0gjc4cn7lhgdsvf2";
|
|
buildDepends = [ mtl ];
|
|
meta = {
|
|
description = "MonadPrompt, implementation & examples";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|