2012-08-09 14:10:53 +04:00
|
|
|
{ cabal, base64Bytestring, blazeBuilder, blazeHtml, blazeMarkup
|
|
|
|
, cereal, cryptoConduit, cryptohash, fileEmbed, httpDate, httpTypes
|
|
|
|
, mimeTypes, systemFileio, systemFilepath, text, time, transformers
|
2012-02-16 18:05:41 +04:00
|
|
|
, unixCompat, wai
|
2011-08-10 03:00:20 +04:00
|
|
|
}:
|
2011-08-08 02:51:22 +04:00
|
|
|
|
2011-08-10 03:00:20 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 02:51:22 +04:00
|
|
|
pname = "wai-app-static";
|
2012-09-20 16:34:53 +04:00
|
|
|
version = "1.3.0.2";
|
|
|
|
sha256 = "0z49s4kc365q3brfkgdnja964h3h3yc3wypccnkj71dl11n040zq";
|
2011-08-10 03:00:20 +04:00
|
|
|
buildDepends = [
|
2012-08-09 14:10:53 +04:00
|
|
|
base64Bytestring blazeBuilder blazeHtml blazeMarkup cereal
|
|
|
|
cryptoConduit cryptohash fileEmbed httpDate httpTypes mimeTypes
|
|
|
|
systemFileio systemFilepath text time transformers unixCompat wai
|
2011-08-08 02:51:22 +04: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 17:21:17 +04:00
|
|
|
meta = {
|
2011-08-30 00:27:47 +04:00
|
|
|
homepage = "http://www.yesodweb.com/book/wai";
|
2011-08-08 02:51:22 +04:00
|
|
|
description = "WAI application for static serving";
|
2012-04-09 16:37:39 +04:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
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-08 02:51:22 +04:00
|
|
|
};
|
|
|
|
})
|