f1135ba545
- alternative-io: updated to version 0.0.1 - blaze-markup: added version 0.5.1.0 - crypto-conduit: updated to version 0.3.2 - cryptohash: updated to version 0.7.5 - darcs: updated to version 2.8.0 - filestore: updated to version 0.4.2 - Graphalyze: cosmetic change - hamlet: updated to version 1.0.1.1 - happstack-hamlet: updated to version 7.0.1 - happstack-server: updated to version 7.0.1 - HFuse: updated to version 0.2.4.1 - Hipmunk: updated to version 5.2.0.8 - language-javascript: updated to version 0.5.2 - libmpd: updated to version 0.8.0 - lifted-base: updated to version 0.1.0.4 - monad-control: updated to version 0.3.1.2 - persistent: updated to version 0.9.0.3 - regex-compat: use latest version when building with GHC 7.4.1 - skein: updated to version 0.1.0.7 - snap-core: updated to version 0.8.1 - snap-server: updated to version 0.8.1.1 - tls: updated to version 0.9.5 - vty: updated to version 4.7.0.12 - wai-app-static: updated to version 1.2.0.2 - yesod-core: updated to version 1.0.1.1 svn path=/nixpkgs/trunk/; revision=33889
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.1";
|
|
sha256 = "11r4zd9z241qvzji7gcmynkib5w9b7c7wa8jx7al2z2aq4qhfx1b";
|
|
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 ];
|
|
};
|
|
})
|