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