2012-02-20 10:45:00 +00:00
|
|
|
{ cabal, base64Bytestring, blazeHtml, extensibleExceptions
|
|
|
|
, filepath, hslogger, html, monadControl, mtl, network, parsec
|
2012-04-23 09:34:01 +00:00
|
|
|
, sendfile, syb, systemFilepath, text, time, transformers
|
|
|
|
, transformersBase, utf8String, xhtml, zlib
|
2011-08-09 23:00:20 +00:00
|
|
|
}:
|
2010-04-15 18:10:42 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 18:23:44 +00:00
|
|
|
pname = "happstack-server";
|
2012-08-09 10:10:50 +00:00
|
|
|
version = "7.0.4";
|
|
|
|
sha256 = "168201z5slm6mrkckpdpshgaiz29k9j1j97vmbrybprj0zhcrl7r";
|
2011-08-09 23:00:20 +00:00
|
|
|
buildDepends = [
|
2012-02-20 10:45:00 +00:00
|
|
|
base64Bytestring blazeHtml extensibleExceptions filepath hslogger
|
2012-04-23 09:34:01 +00:00
|
|
|
html monadControl mtl network parsec sendfile syb systemFilepath
|
|
|
|
text time transformers transformersBase utf8String xhtml zlib
|
2011-08-07 18:23:44 +00:00
|
|
|
];
|
Use jailbreak to get rid of overspecified version restrictions to fix
builds of Agda, accelerate-cuda, clientsession, filestore, ghc-events,
gitit, happstack, happstack, happstack, hledger-lib, hledger, mime-mail,
pandoc, snap, wai-app-static, yesod-static, and urlencoded.
2012-09-06 13:21:17 +00:00
|
|
|
jailbreak = true;
|
2011-08-07 18:23:44 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://happstack.com";
|
2011-08-11 13:03:51 +00:00
|
|
|
description = "Web related tools and services";
|
2011-08-07 18:23:44 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 18:23:44 +00:00
|
|
|
};
|
2010-04-15 18:10:42 +00:00
|
|
|
})
|