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

31 lines
1.2 KiB
Nix
Raw Normal View History

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