30 lines
1.1 KiB
Nix
30 lines
1.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.10.0.1";
|
|
sha256 = "14j9lgcdyxh7n4yidfvn1r94nziljiqz6nsqgq114v34bnn6l2yn";
|
|
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
|
|
];
|
|
jailbreak = true;
|
|
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;
|
|
};
|
|
})
|