New: keter, Yesod deployment manager.

Including the dependencies: unix-process-conduit and networkConduitTls.
This commit is contained in:
Pascal Wittmann
2013-04-03 23:50:40 +02:00
parent e42014eb5a
commit 310b1221e1
4 changed files with 67 additions and 0 deletions
@@ -0,0 +1,26 @@
{ cabal, blazeBuilder, conduit, dataDefault, filepath, hinotify
, httpReverseProxy, httpTypes, network, networkConduit
, networkConduitTls, random, systemFileio, systemFilepath, tar
, text, time, transformers, unixCompat, unixProcessConduit, wai
, waiAppStatic, yaml, zlib
}:
cabal.mkDerivation (self: {
pname = "keter";
version = "0.3.5.4";
sha256 = "0dqlfb5cydqk33zp6wf18wr3idpn3bbb8im3rcrg4r9ny7sqfmp7";
isLibrary = true;
isExecutable = true;
buildDepends = [
blazeBuilder conduit dataDefault filepath hinotify httpReverseProxy
httpTypes network networkConduit networkConduitTls random
systemFileio systemFilepath tar text time transformers unixCompat
unixProcessConduit wai waiAppStatic yaml zlib
];
meta = {
homepage = "http://www.yesodweb.com/";
description = "Web application deployment manager, focusing on Haskell web frameworks";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})