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

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