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