summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/httpd-shed/default.nix
blob: 19bf6736ff547141f32f82fa584e288c79f103d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ cabal, Cabal, network }:

cabal.mkDerivation (self: {
  pname = "httpd-shed";
  version = "0.4";
  sha256 = "c03f784742bdc3053c7e867e587ee859a9a3adaa082d36bdb2ea69da1b02069f";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ Cabal network ];
  meta = {
    description = "A simple web-server with an interact style API";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})