summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/warp/default.nix
blob: b86884415a505957da887adb6eec823b4ed94649 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ cabal, async, blazeBuilder, blazeBuilderConduit, caseInsensitive
, conduit, conduitExtra, doctest, hashable, hspec, HTTP, httpDate
, httpTypes, HUnit, liftedBase, network, networkConduit, QuickCheck
, simpleSendfile, streamingCommons, text, time, transformers
, unixCompat, void, wai
}:

cabal.mkDerivation (self: {
  pname = "warp";
  version = "2.1.4.1";
  sha256 = "0j9w74gk84w9khyg5whjkd21pllg4rw8hxfs65zmrvm1k94lwqkf";
  buildDepends = [
    blazeBuilder blazeBuilderConduit caseInsensitive conduit
    conduitExtra hashable httpDate httpTypes liftedBase network
    networkConduit simpleSendfile streamingCommons text transformers
    unixCompat void wai
  ];
  testDepends = [
    async blazeBuilder blazeBuilderConduit caseInsensitive conduit
    conduitExtra doctest hashable hspec HTTP httpDate httpTypes HUnit
    liftedBase network networkConduit QuickCheck simpleSendfile
    streamingCommons text time transformers unixCompat void wai
  ];
  doCheck = false;
  meta = {
    homepage = "http://github.com/yesodweb/wai";
    description = "A fast, light-weight web server for WAI applications";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})