2012-07-20 04:37:21 +02:00
|
|
|
{ cabal, aeson, attoparsec, cereal, clientsession, configurator
|
|
|
|
, dataLens, dataLensTemplate, directoryTree, filepath, hashable
|
|
|
|
, heist, logict, MonadCatchIOTransformers, mtl, mwcRandom
|
|
|
|
, pwstoreFast, snapCore, snapServer, stm, syb, text, time
|
|
|
|
, transformers, unorderedContainers, utf8String, vector
|
|
|
|
, vectorAlgorithms, xmlhtml
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "snap";
|
2012-09-20 14:34:53 +02:00
|
|
|
version = "0.9.2";
|
|
|
|
sha256 = "12sqc6j6v57jll8pkgzj71f6s435rwhqxqzl78l3rk4qn6sc0gzi";
|
2012-07-20 04:37:21 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
aeson attoparsec cereal clientsession configurator dataLens
|
|
|
|
dataLensTemplate directoryTree filepath hashable heist logict
|
|
|
|
MonadCatchIOTransformers mtl mwcRandom pwstoreFast snapCore
|
|
|
|
snapServer stm syb text time transformers unorderedContainers
|
|
|
|
utf8String vector vectorAlgorithms xmlhtml
|
|
|
|
];
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|