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";
|
2014-01-15 12:18:19 +01:00
|
|
|
version = "0.4.0.1";
|
|
|
|
sha256 = "04m07wqhaggkgksha7x528y890j30ay5axipfy6b1ma9cf0a9jwq";
|
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;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-12-02 13:48:34 +01:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|