summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/wai-handler-launch/default.nix
blob: a3d02329dfdf79aa616fd60e9a6f9fb529737993 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, blazeBuilder, blazeBuilderConduit, conduit, httpTypes
, transformers, wai, warp, zlibConduit
}:

cabal.mkDerivation (self: {
  pname = "wai-handler-launch";
  version = "1.3.1.4";
  sha256 = "0ii74p2400a4w0pcswk8j57wbasi17alifs4xgwv79b235wnn317";
  buildDepends = [
    blazeBuilder blazeBuilderConduit conduit httpTypes transformers wai
    warp zlibConduit
  ];
  meta = {
    description = "Launch a web app in the default browser";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})