880dcc2c64
By now, it happened twice that a commit broke GHC and thus all Haskell packages we have in Nixpkgs. On such an occasion, I receive well in excess of 3000 notification e-mails from Hydra, and then I receive another 3000 e-mails after the bug has been fixed. Under these circumstances, subscribing to these notifications makes no sense for me. svn path=/nixpkgs/trunk/; revision=33392
28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
{ cabal, attoparsec, attoparsecEnumerator, base16Bytestring
|
|
, blazeBuilder, blazeBuilderEnumerator, bytestringMmap
|
|
, bytestringNums, caseInsensitive, deepseq, dlist, enumerator
|
|
, filepath, HUnit, MonadCatchIOTransformers, mtl, mwcRandom
|
|
, regexPosix, text, time, transformers, unixCompat
|
|
, unorderedContainers, vector, zlibEnum
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "snap-core";
|
|
version = "0.8.0.1";
|
|
sha256 = "0lw1c5gczb75878vr5acjck656aq5zg1hva9bfny321v0442azds";
|
|
buildDepends = [
|
|
attoparsec attoparsecEnumerator base16Bytestring blazeBuilder
|
|
blazeBuilderEnumerator bytestringMmap bytestringNums
|
|
caseInsensitive deepseq dlist enumerator filepath HUnit
|
|
MonadCatchIOTransformers mtl mwcRandom regexPosix text time
|
|
transformers unixCompat unorderedContainers vector zlibEnum
|
|
];
|
|
meta = {
|
|
homepage = "http://snapframework.com/";
|
|
description = "Snap: A Haskell Web Framework (core interfaces and types)";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|