nixpkgs/pkgs/development/libraries/haskell/thespian/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
465 B
Nix

{ cabal, mtl }:
cabal.mkDerivation (self: {
pname = "thespian";
version = "0.999";
sha256 = "0z3cqjcf6xr0z7g3s1jszcs39w43sl0793gl0qm3dklbginqbcnn";
buildDepends = [ mtl ];
meta = {
homepage = "http://bitbucket.org/alinabi/thespian";
description = "Lightweight Erlang-style actors for Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})