932574a529
comonad-1.1.1.6 comonad-3.0.0.1 configurator-0.2.0.0 contravariant-0.2.0.2 data-lens-2.10.1 data-lens-template-2.1.5 distributive-0.2.2 heist-0.8.1.1 semigroupoids-1.3.4 snap-0.9.1.1 xmlhtml-0.2.0.0
29 lines
1.1 KiB
Nix
29 lines
1.1 KiB
Nix
{ cabal, aeson, attoparsec, cereal, clientsession, configurator
|
|
, dataLens, dataLensTemplate, directoryTree, filepath, hashable
|
|
, heist, logict, MonadCatchIOTransformers, mtl, mwcRandom
|
|
, pwstoreFast, snapCore, snapServer, stm, syb, text, time
|
|
, transformers, unorderedContainers, utf8String, vector
|
|
, vectorAlgorithms, xmlhtml
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "snap";
|
|
version = "0.9.1.1";
|
|
sha256 = "1g8jvnwrhna5g064dmv4v4khrpwwn0vcqw8l7rcpkp75l46fq29z";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
aeson attoparsec cereal clientsession configurator dataLens
|
|
dataLensTemplate directoryTree filepath hashable heist logict
|
|
MonadCatchIOTransformers mtl mwcRandom pwstoreFast snapCore
|
|
snapServer stm syb text time transformers unorderedContainers
|
|
utf8String vector vectorAlgorithms xmlhtml
|
|
];
|
|
meta = {
|
|
homepage = "http://snapframework.com/";
|
|
description = "Snap: A Haskell Web Framework: project starter executable and glue code library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|