nixpkgs/pkgs/development/libraries/haskell/snap/core.nix
Peter Simons 3e10ee5c92 Updated Haskell expressions with the latest version of cabal2nix.
* haskell-dataenc: updated to version 0.14.0.2
 * haskell-fclabels: updated to version 1.0.1

svn path=/nixpkgs/trunk/; revision=28574
2011-08-14 22:52:05 +00:00

28 lines
911 B
Nix

{ cabal, attoparsec, attoparsecEnumerator, blazeBuilder
, bytestringMmap, bytestringNums, caseInsensitive, deepseq, dlist
, enumerator, MonadCatchIOTransformers, mtl, text, time
, transformers, unixCompat, vector, zlib
}:
cabal.mkDerivation (self: {
pname = "snap-core";
version = "0.5.3.1";
sha256 = "0qwlcak1hi4cqyhnks7qqf4zq0rw2486paf0mlasyzb6ba0pwl6m";
buildDepends = [
attoparsec attoparsecEnumerator blazeBuilder bytestringMmap
bytestringNums caseInsensitive deepseq dlist enumerator
MonadCatchIOTransformers mtl text time transformers unixCompat
vector zlib
];
meta = {
homepage = "http://snapframework.com/";
description = "Snap: A Haskell Web Framework (Core)";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})