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