2012-02-20 10:45:00 +00:00
|
|
|
{ cabal, base64Bytestring, blazeHtml, extensibleExceptions
|
|
|
|
, filepath, hslogger, html, monadControl, mtl, network, parsec
|
2012-12-03 15:11:05 +00:00
|
|
|
, sendfile, syb, systemFilepath, text, threads, time, timeCompat
|
|
|
|
, transformers, transformersBase, utf8String, xhtml, zlib
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2010-04-15 19:10:42 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 19:23:44 +01:00
|
|
|
pname = "happstack-server";
|
2013-02-14 11:42:08 +00:00
|
|
|
version = "7.1.4";
|
|
|
|
sha256 = "0vnawm2m7lr7yvpd30divczxl90fayjvsysr7l1lq76qgxjsd576";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2012-02-20 10:45:00 +00:00
|
|
|
base64Bytestring blazeHtml extensibleExceptions filepath hslogger
|
2012-04-23 10:34:01 +01:00
|
|
|
html monadControl mtl network parsec sendfile syb systemFilepath
|
2012-12-03 15:11:05 +00:00
|
|
|
text threads time timeCompat transformers transformersBase
|
|
|
|
utf8String xhtml zlib
|
2011-08-07 19:23:44 +01:00
|
|
|
];
|
2013-02-18 10:10:40 +00:00
|
|
|
jailbreak = true;
|
2011-08-07 19:23:44 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://happstack.com";
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "Web related tools and services";
|
2011-08-07 19:23:44 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 19:23:44 +01:00
|
|
|
};
|
2010-04-15 19:10:42 +01:00
|
|
|
})
|