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