Added httpd-shed.

svn path=/nixpkgs/trunk/; revision=18756
This commit is contained in:
Andres Löh 2009-12-02 12:48:34 +00:00
parent 253575002c
commit 30468489ca
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{cabal, network}:
cabal.mkDerivation (self : {
pname = "httpd-shed";
version = "0.4";
sha256 = "c03f784742bdc3053c7e867e587ee859a9a3adaa082d36bdb2ea69da1b02069f";
propagatedBuildInputs = [network];
meta = {
description = "A simple web-server with an interact style API";
};
})

View file

@ -288,6 +288,10 @@ rec {
inherit cabal;
};
httpdShed = import ../development/libraries/haskell/httpd-shed {
inherit cabal network;
};
HUnit = import ../development/libraries/haskell/HUnit {
inherit cabal;
};