2012-02-16 18:05:41 +04:00
|
|
|
{ cabal, network }:
|
2009-12-02 15:48:34 +03:00
|
|
|
|
2011-08-10 03:00:20 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2009-12-02 15:48:34 +03:00
|
|
|
pname = "httpd-shed";
|
|
|
|
version = "0.4";
|
|
|
|
sha256 = "c03f784742bdc3053c7e867e587ee859a9a3adaa082d36bdb2ea69da1b02069f";
|
2011-08-10 03:00:20 +04:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-16 18:05:41 +04:00
|
|
|
buildDepends = [ network ];
|
2009-12-02 15:48:34 +03:00
|
|
|
meta = {
|
|
|
|
description = "A simple web-server with an interact style API";
|
2011-08-10 03:00:20 +04:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 14:21:28 +04:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-12-02 15:48:34 +03:00
|
|
|
};
|
2011-03-28 19:04:00 +04:00
|
|
|
})
|