2012-12-10 11:43:41 +00:00
|
|
|
{ cabal, aeson, attoparsec, cereal, clientsession, comonad
|
2013-01-30 10:29:42 +00:00
|
|
|
, configurator, directoryTree, dlist, either, errors, filepath
|
|
|
|
, hashable, heist, lens, logict, MonadCatchIOTransformers, mtl
|
|
|
|
, mwcRandom, pwstoreFast, regexPosix, snapCore, snapServer, stm
|
|
|
|
, syb, text, time, transformers, unorderedContainers, vector
|
|
|
|
, vectorAlgorithms, xmlhtml
|
2012-07-20 03:37:21 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "snap";
|
2013-01-30 10:29:42 +00:00
|
|
|
version = "0.11.0";
|
|
|
|
sha256 = "0mw1fxjijd3z9bz1znrc5vfxa4mc1by481gxfmk2hdlcsib9sp7n";
|
2012-07-20 03:37:21 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-12-10 11:43:41 +00:00
|
|
|
aeson attoparsec cereal clientsession comonad configurator
|
2013-01-30 10:29:42 +00:00
|
|
|
directoryTree dlist either errors filepath hashable heist lens
|
|
|
|
logict MonadCatchIOTransformers mtl mwcRandom pwstoreFast
|
|
|
|
regexPosix snapCore snapServer stm syb text time transformers
|
2012-12-10 11:43:41 +00:00
|
|
|
unorderedContainers vector vectorAlgorithms xmlhtml
|
2012-07-20 03:37:21 +01:00
|
|
|
];
|
2012-12-23 19:02:48 +00:00
|
|
|
jailbreak = true;
|
2012-07-20 03:37:21 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://snapframework.com/";
|
2012-09-20 13:34:53 +01:00
|
|
|
description = "Top-level package for the Snap Web Framework";
|
2012-07-20 03:37:21 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|