29 lines
1 KiB
Nix
29 lines
1 KiB
Nix
{ cabal, aeson, attoparsec, cereal, clientsession, comonad
|
|
, configurator, directoryTree, dlist, errors, filepath, hashable
|
|
, heist, lens, logict, MonadCatchIOTransformers, mtl, mwcRandom
|
|
, pwstoreFast, regexPosix, snapCore, snapServer, stm, syb, text
|
|
, time, transformers, unorderedContainers, vector, vectorAlgorithms
|
|
, xmlhtml
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "snap";
|
|
version = "0.11.1";
|
|
sha256 = "0dd66496fjfp80i6whl356sqk7n03rx4ycsah7x11fc9rvplmr3q";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
aeson attoparsec cereal clientsession comonad configurator
|
|
directoryTree dlist errors filepath hashable heist lens logict
|
|
MonadCatchIOTransformers mtl mwcRandom pwstoreFast regexPosix
|
|
snapCore snapServer stm syb text time transformers
|
|
unorderedContainers vector vectorAlgorithms xmlhtml
|
|
];
|
|
meta = {
|
|
homepage = "http://snapframework.com/";
|
|
description = "Top-level package for the Snap Web Framework";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|