bc7c4c1951
- base16-bytestring: updated to version 0.1.1.5 - base64-bytestring: updated to version 0.1.1.3 - bloomfilter: updated to version 1.2.6.10 - cryptocipher: updated to version 0.3.5 - gtk: updated to version 0.12.3.1 - http-conduit: updated to version 1.4.1.9 - snap-core: updated to version 0.9.0 - snap-server: updated to version 0.9.0 - stringsearch: updated to version 0.3.6.3 - text: updated to version 0.11.2.2 - void: updated to version 0.5.6 svn path=/nixpkgs/trunk/; revision=34542
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.9.0";
|
|
sha256 = "1fsjamv9sl19in2ws97v246sbvlnj05rm9dljc0pz7kasawyqsb7";
|
|
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 ];
|
|
};
|
|
})
|