2012-09-20 14:34:52 +02:00
|
|
|
{ cabal, attoparsec, attoparsecEnumerator, blazeBuilder
|
|
|
|
, blazeBuilderEnumerator, bytestringMmap, caseInsensitive, deepseq
|
2013-06-11 11:36:56 +02:00
|
|
|
, enumerator, filepath, hashable, HUnit, MonadCatchIOTransformers
|
|
|
|
, mtl, random, regexPosix, text, time, unixCompat
|
|
|
|
, unorderedContainers, vector, zlibEnum
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2011-04-01 01:21:36 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-04-01 01:21:36 +02:00
|
|
|
pname = "snap-core";
|
2013-11-06 15:47:45 +01:00
|
|
|
version = "0.9.5.0";
|
|
|
|
sha256 = "1i5xmgfy807rm6f47l7p7z99nw9bq8vldlfvzi1gxzz8ic80slm4";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2012-09-20 14:34:52 +02:00
|
|
|
attoparsec attoparsecEnumerator blazeBuilder blazeBuilderEnumerator
|
2013-06-11 11:36:56 +02:00
|
|
|
bytestringMmap caseInsensitive deepseq enumerator filepath hashable
|
|
|
|
HUnit MonadCatchIOTransformers mtl random regexPosix text time
|
|
|
|
unixCompat unorderedContainers vector zlibEnum
|
2011-08-07 21:33:30 +02:00
|
|
|
];
|
2011-04-01 01:21:36 +02:00
|
|
|
meta = {
|
2011-08-07 21:33:30 +02:00
|
|
|
homepage = "http://snapframework.com/";
|
2012-03-19 12:15:39 +01:00
|
|
|
description = "Snap: A Haskell Web Framework (core interfaces and types)";
|
2011-08-07 21:33:30 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-04-01 01:21:36 +02:00
|
|
|
};
|
|
|
|
})
|