15 lines
523 B
Nix
15 lines
523 B
Nix
|
{ cabal, digestiveFunctors, filepath, mtl, snapCore, text }:
|
||
|
|
||
|
cabal.mkDerivation (self: {
|
||
|
pname = "digestive-functors-snap";
|
||
|
version = "0.5.0.0";
|
||
|
sha256 = "01lbd42rsryzqzra8ax22iw6c9fyv5az8q7dkdi6yyfxdq976l0x";
|
||
|
buildDepends = [ digestiveFunctors filepath mtl snapCore text ];
|
||
|
meta = {
|
||
|
homepage = "http://github.com/jaspervdj/digestive-functors";
|
||
|
description = "Snap backend for the digestive-functors library";
|
||
|
license = self.stdenv.lib.licenses.bsd3;
|
||
|
platforms = self.ghc.meta.platforms;
|
||
|
};
|
||
|
})
|