69adc0d433
- gd: updated to version 3000.7.3 - hakyll: updated to version 3.2.6.2 - HaskellForMaths: updated to version 0.4.4 - haskell-src-meta: updated to version 0.5.1.1 - mwc-random: dropped obsolete version 0.10.0.1. - persistent-template: updated to version 0.8.2 - snap-core: updated to version 0.8.0.1 - snap-server: updated to version 0.8.0.1 - unordered-containers: dropped obsolete version 0.1.4.6. svn path=/nixpkgs/trunk/; revision=33255
31 lines
1.1 KiB
Nix
31 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
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|