nixpkgs/pkgs/development/libraries/haskell/httpd-shed/default.nix
Andres Löh 30468489ca Added httpd-shed.
svn path=/nixpkgs/trunk/; revision=18756
2009-12-02 12:48:34 +00:00

13 lines
297 B
Nix

{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";
};
})