66 lines
3.4 KiB
Nix
66 lines
3.4 KiB
Nix
|
{ cabal, aeson, ansiTerminal, asn1Data, asn1Types, attoparsec
|
||
|
, attoparsecConduit, authenticate, base64Bytestring
|
||
|
, baseUnicodeSymbols, blazeBuilder, blazeBuilderConduit, blazeHtml
|
||
|
, blazeMarkup, byteorder, caseInsensitive, cereal, certificate
|
||
|
, cipherAes, cipherRc4, clientsession, conduit, cookie, cprngAes
|
||
|
, cryptoApi, cryptoConduit, cryptohash, cryptoNumbers, cryptoPubkey
|
||
|
, cryptoPubkeyTypes, cryptoRandomApi, cssText, dataDefault
|
||
|
, dataDefaultClass, dataDefaultInstancesBase
|
||
|
, dataDefaultInstancesContainers, dataDefaultInstancesDlist
|
||
|
, dataDefaultInstancesOldLocale, dateCache, dlist, emailValidate
|
||
|
, entropy, failure, fastLogger, fileEmbed, filesystemConduit
|
||
|
, hamlet, hashable, hjsmin, hspec, hspecExpectations, htmlConduit
|
||
|
, httpConduit, httpDate, httpTypes, languageJavascript, liftedBase
|
||
|
, mimeMail, mimeTypes, mmorph, monadControl, monadLogger
|
||
|
, networkConduit, pathPieces, pem, persistent, persistentTemplate
|
||
|
, poolConduit, primitive, publicsuffixlist, pureMD5, pwstoreFast
|
||
|
, quickcheckIo, resourcePool, resourcet, safe, semigroups, setenv
|
||
|
, SHA, shakespeare, shakespeareCss, shakespeareI18n, shakespeareJs
|
||
|
, shakespeareText, silently, simpleSendfile, skein, socks
|
||
|
, stringsearch, systemFileio, systemFilepath, tagged, tagsoup
|
||
|
, tagstreamConduit, tls, tlsExtra, transformersBase, unixCompat
|
||
|
, unorderedContainers, utf8Light, utf8String, vault, vector, void
|
||
|
, wai, waiAppStatic, waiExtra, waiLogger, waiTest, warp, word8
|
||
|
, xmlConduit, xmlTypes, xssSanitize, yaml, yesod, yesodAuth
|
||
|
, yesodCore, yesodForm, yesodPersistent, yesodRoutes, yesodStatic
|
||
|
, yesodTest, zlibBindings, zlibConduit
|
||
|
}:
|
||
|
|
||
|
cabal.mkDerivation (self: {
|
||
|
pname = "yesod-platform";
|
||
|
version = "1.2.0.1";
|
||
|
sha256 = "0hff8kx5d1z8xmy7fnzzhvy9774r26i4bczkb4cz30v3v5pf2g15";
|
||
|
buildDepends = [
|
||
|
aeson ansiTerminal asn1Data asn1Types attoparsec attoparsecConduit
|
||
|
authenticate base64Bytestring baseUnicodeSymbols blazeBuilder
|
||
|
blazeBuilderConduit blazeHtml blazeMarkup byteorder caseInsensitive
|
||
|
cereal certificate cipherAes cipherRc4 clientsession conduit cookie
|
||
|
cprngAes cryptoApi cryptoConduit cryptohash cryptoNumbers
|
||
|
cryptoPubkey cryptoPubkeyTypes cryptoRandomApi cssText dataDefault
|
||
|
dataDefaultClass dataDefaultInstancesBase
|
||
|
dataDefaultInstancesContainers dataDefaultInstancesDlist
|
||
|
dataDefaultInstancesOldLocale dateCache dlist emailValidate entropy
|
||
|
failure fastLogger fileEmbed filesystemConduit hamlet hashable
|
||
|
hjsmin hspec hspecExpectations htmlConduit httpConduit httpDate
|
||
|
httpTypes languageJavascript liftedBase mimeMail mimeTypes mmorph
|
||
|
monadControl monadLogger networkConduit pathPieces pem persistent
|
||
|
persistentTemplate poolConduit primitive publicsuffixlist pureMD5
|
||
|
pwstoreFast quickcheckIo resourcePool resourcet safe semigroups
|
||
|
setenv SHA shakespeare shakespeareCss shakespeareI18n shakespeareJs
|
||
|
shakespeareText silently simpleSendfile skein socks stringsearch
|
||
|
systemFileio systemFilepath tagged tagsoup tagstreamConduit tls
|
||
|
tlsExtra transformersBase unixCompat unorderedContainers utf8Light
|
||
|
utf8String vault vector void wai waiAppStatic waiExtra waiLogger
|
||
|
waiTest warp word8 xmlConduit xmlTypes xssSanitize yaml yesod
|
||
|
yesodAuth yesodCore yesodForm yesodPersistent yesodRoutes
|
||
|
yesodStatic yesodTest zlibBindings zlibConduit
|
||
|
];
|
||
|
jailbreak = true;
|
||
|
meta = {
|
||
|
homepage = "http://www.yesodweb.com/";
|
||
|
description = "Meta package for Yesod";
|
||
|
license = self.stdenv.lib.licenses.mit;
|
||
|
platforms = self.ghc.meta.platforms;
|
||
|
};
|
||
|
})
|