forked from purefn/hiplambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhiplambda.nix
22 lines (22 loc) · 976 Bytes
/
hiplambda.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ mkDerivation, aeson, base, bytestring, cabal-file-th, exceptions
, gitrev, hipbot, hoogle, http-types, lens, mtl, mueval, pointfree
, pointful, postgresql-simple, process-extras, resource-pool, safe
, stdenv, text, transformers, utf8-string, wai, wai-extra, wai-lens
, warp, webcrank, webcrank-wai
}:
mkDerivation {
pname = "hiplambda";
version = "0.1.0.0";
src = builtins.filterSource (path: type: baseNameOf path != ".git" && baseNameOf path != "dist" && baseNameOf path != "deploy") ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
aeson base bytestring cabal-file-th exceptions gitrev hipbot hoogle
http-types lens mtl mueval pointfree pointful postgresql-simple
process-extras resource-pool safe text transformers utf8-string wai
wai-extra wai-lens warp webcrank webcrank-wai
];
homepage = "https://github.com/purefn/hiplambda";
description = "Haskell bot for HipChat";
license = stdenv.lib.licenses.bsd3;
}