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