2014-03-30 21:07:10 +01:00
|
|
|
{ cabal, blazeBuilder, blazeBuilderConduit, conduit, conduitExtra
|
|
|
|
, httpTypes, transformers, wai, warp, zlibConduit
|
2013-04-20 19:21:38 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "wai-handler-launch";
|
2014-03-30 21:07:10 +01:00
|
|
|
version = "2.0.1.2";
|
|
|
|
sha256 = "1mcjxv4dkcc5rx1bj8zc5m2q2ifcdwhsl4x4fnrv1ir9kclzsm7q";
|
2013-04-20 19:21:38 +01:00
|
|
|
buildDepends = [
|
2014-03-30 21:07:10 +01:00
|
|
|
blazeBuilder blazeBuilderConduit conduit conduitExtra httpTypes
|
|
|
|
transformers wai warp zlibConduit
|
2013-04-20 19:21:38 +01:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
description = "Launch a web app in the default browser";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|