2013-04-04 16:22:47 +02:00
|
|
|
{ cabal, attoparsec, blazeBuilder, caseInsensitive, conduit
|
2013-07-01 11:04:06 +02:00
|
|
|
, dataDefault, filepath, fsnotify, httpConduit, httpReverseProxy
|
2013-04-04 16:22:47 +02:00
|
|
|
, httpTypes, mtl, network, networkConduit, networkConduitTls
|
|
|
|
, random, regexTdfa, systemFileio, systemFilepath, tar, text, time
|
|
|
|
, transformers, unixCompat, unixProcessConduit, wai, waiAppStatic
|
2013-07-01 11:04:06 +02:00
|
|
|
, warp, warpTls, yaml, zlib
|
2013-04-03 23:50:40 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "keter";
|
2013-07-01 11:04:06 +02:00
|
|
|
version = "0.4.0";
|
|
|
|
sha256 = "0ny8z2rfn090vci262xvyrdbkmdb7qjb4x15r81l2691ibf09ppv";
|
2013-04-03 23:50:40 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-04-04 16:22:47 +02:00
|
|
|
attoparsec blazeBuilder caseInsensitive conduit dataDefault
|
2013-07-01 11:04:06 +02:00
|
|
|
filepath fsnotify httpConduit httpReverseProxy httpTypes mtl
|
2013-04-04 16:22:47 +02:00
|
|
|
network networkConduit networkConduitTls random regexTdfa
|
2013-04-03 23:50:40 +02:00
|
|
|
systemFileio systemFilepath tar text time transformers unixCompat
|
2013-07-01 11:04:06 +02:00
|
|
|
unixProcessConduit wai waiAppStatic warp warpTls yaml zlib
|
2013-04-03 23:50:40 +02:00
|
|
|
];
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|