2012-08-09 11:10:53 +01:00
|
|
|
{ cabal, base64Bytestring, blazeBuilder, blazeHtml, blazeMarkup
|
|
|
|
, cereal, cryptoConduit, cryptohash, fileEmbed, httpDate, httpTypes
|
|
|
|
, mimeTypes, systemFileio, systemFilepath, text, time, transformers
|
2012-02-16 14:05:41 +00:00
|
|
|
, unixCompat, wai
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2011-08-07 23:51:22 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 23:51:22 +01:00
|
|
|
pname = "wai-app-static";
|
2013-02-20 10:58:04 +00:00
|
|
|
version = "1.3.1.2";
|
|
|
|
sha256 = "1i0j3n0cp1zq43g06nb3cxajd4k9isg4chdwzzlyimm078a9w54x";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2012-08-09 11:10:53 +01:00
|
|
|
base64Bytestring blazeBuilder blazeHtml blazeMarkup cereal
|
|
|
|
cryptoConduit cryptohash fileEmbed httpDate httpTypes mimeTypes
|
|
|
|
systemFileio systemFilepath text time transformers unixCompat wai
|
2011-08-07 23:51:22 +01: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 14:21:17 +01:00
|
|
|
meta = {
|
2013-02-18 10:11:16 +00:00
|
|
|
homepage = "http://www.yesodweb.com/book/web-application-interface";
|
2011-08-07 23:51:22 +01:00
|
|
|
description = "WAI application for static serving";
|
2012-04-09 13:37:39 +01:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 23:51:22 +01:00
|
|
|
};
|
|
|
|
})
|