about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/servant-server/default.nix
blob: 7776af8036d19a25e5877185a685db1a71867493 (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
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, aeson, attoparsec, either, exceptions, hspec, hspecWai
, httpTypes, network, networkUri, parsec, QuickCheck, safe, servant
, split, stringConversions, systemFilepath, temporary, text
, transformers, wai, waiAppStatic, waiExtra, warp
}:

cabal.mkDerivation (self: {
  pname = "servant-server";
  version = "0.2.1";
  sha256 = "1b2aqxnn9nf5qabbl8k9kq9b2mpn591j9jpjy33sis7ni469bayj";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    aeson attoparsec either httpTypes networkUri safe servant split
    stringConversions systemFilepath text transformers wai waiAppStatic
    warp
  ];
  testDepends = [
    aeson either exceptions hspec hspecWai httpTypes network parsec
    QuickCheck servant stringConversions temporary text transformers
    wai waiExtra warp
  ];
  meta = {
    homepage = "http://haskell-servant.github.io/";
    description = "A family of combinators for defining webservices APIs and serving them";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})