nixpkgs/pkgs/development/tools/haskell/keter/default.nix

31 lines
1.2 KiB
Nix
Raw Normal View History

2013-09-08 20:05:42 +00:00
{ cabal, aeson, async, attoparsec, blazeBuilder, caseInsensitive
, conduit, dataDefault, filepath, fsnotify, httpConduit
, httpReverseProxy, httpTypes, liftedBase, mtl, network
, networkConduit, networkConduitTls, random, regexTdfa, stm
, systemFileio, systemFilepath, tar, text, time, transformers
, unixCompat, unixProcessConduit, unorderedContainers, vector, wai
2013-09-08 20:05:42 +00:00
, waiAppStatic, waiExtra, warp, warpTls, yaml, zlib
}:
cabal.mkDerivation (self: {
pname = "keter";
version = "1.0.1.2";
sha256 = "1rk0sf6riyb6r1sz0jkvwwj1yyxwjxgafpidp9rqwm8wnqyx6hh8";
isLibrary = true;
isExecutable = true;
buildDepends = [
2013-09-08 20:05:42 +00:00
aeson async attoparsec blazeBuilder caseInsensitive conduit
dataDefault filepath fsnotify httpConduit httpReverseProxy
httpTypes liftedBase mtl network networkConduit networkConduitTls
random regexTdfa stm systemFileio systemFilepath tar text time
2013-09-08 20:05:42 +00:00
transformers unixCompat unixProcessConduit unorderedContainers
vector wai waiAppStatic waiExtra warp warpTls 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;
};
})