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

{ cabal, aeson, blazeBuilder, caseInsensitive, conduit, dataDefault
, hspec, httpTypes, liftedBase, monadControl, mtl, regexCompat
, text, transformers, transformersBase, wai, waiExtra, warp
}:

cabal.mkDerivation (self: {
  pname = "scotty";
  version = "0.8.1";
  sha256 = "182iwsz5h7p08sqwfzb332gwj1wjx7fhhazm6gfdc0incab769m0";
  buildDepends = [
    aeson blazeBuilder caseInsensitive conduit dataDefault httpTypes
    monadControl mtl regexCompat text transformers transformersBase wai
    waiExtra warp
  ];
  testDepends = [ hspec httpTypes liftedBase wai waiExtra ];
  jailbreak = true;
  meta = {
    homepage = "https://github.com/scotty-web/scotty";
    description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})