mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Add haskell/lambdabot-utils
This commit is contained in:
parent
269f013d90
commit
0a5a20d365
2 changed files with 21 additions and 0 deletions
|
@ -0,0 +1,19 @@
|
|||
{ cabal, binary, haskellSrc, mtl, network, random, regexCompat
|
||||
, regexPosix, syb, tagsoup, utf8String, zlib
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "lambdabot-utils";
|
||||
version = "4.2.1";
|
||||
sha256 = "1a5rj8zjvfhziwldikgki92lg9bwv6h9ysp6yqip6lja18h4lilx";
|
||||
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;
|
||||
};
|
||||
})
|
|
@ -969,6 +969,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
lambdabot = callPackage ../development/libraries/haskell/lambdabot/default.nix {};
|
||||
|
||||
lambdabotUtils = callPackage ../development/libraries/haskell/lambdabot-utils {};
|
||||
|
||||
largeword = callPackage ../development/libraries/haskell/largeword {};
|
||||
|
||||
lazysmallcheck = callPackage ../development/libraries/haskell/lazysmallcheck {};
|
||||
|
|
Loading…
Reference in a new issue