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
26 lines
1 KiB
Nix
26 lines
1 KiB
Nix
{ cabal, attoparsec, attoparsecEnumerator, binary, blazeBuilder
|
|
, blazeBuilderEnumerator, bytestringNums, caseInsensitive
|
|
, directoryTree, enumerator, filepath, MonadCatchIOTransformers
|
|
, mtl, murmurHash, network, snapCore, text, time, transformers
|
|
, unixCompat, vector, vectorAlgorithms
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "snap-server";
|
|
version = "0.9.0";
|
|
sha256 = "12mjy1w6gsnw93bcpsnxnw7kc2v73dfps7gk542iw73lldfhh3va";
|
|
buildDepends = [
|
|
attoparsec attoparsecEnumerator binary blazeBuilder
|
|
blazeBuilderEnumerator bytestringNums caseInsensitive directoryTree
|
|
enumerator filepath MonadCatchIOTransformers mtl murmurHash network
|
|
snapCore text time transformers unixCompat vector vectorAlgorithms
|
|
];
|
|
meta = {
|
|
homepage = "http://snapframework.com/";
|
|
description = "A fast, iteratee-based, epoll-enabled web server for the Snap Framework";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|