3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
21 lines
650 B
Nix
21 lines
650 B
Nix
{ cabal, binary, haskellSrc, mtl, network, random, regexCompat
|
|
, regexPosix, syb, tagsoup, utf8String, zlib
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "lambdabot-utils";
|
|
version = "4.2.2";
|
|
sha256 = "0mmz9rn6vv8xnavmz66g164h1liir3rzg1n7lmbcsgwcyhm925d7";
|
|
buildDepends = [
|
|
binary haskellSrc mtl network random regexCompat regexPosix syb
|
|
tagsoup utf8String zlib
|
|
];
|
|
meta = {
|
|
homepage = "http://haskell.org/haskellwiki/Lambdabot";
|
|
description = "Utility libraries for the advanced IRC bot, Lambdabot";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|