3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
17 lines
475 B
Nix
17 lines
475 B
Nix
{ cabal, network }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "httpd-shed";
|
|
version = "0.4";
|
|
sha256 = "c03f784742bdc3053c7e867e587ee859a9a3adaa082d36bdb2ea69da1b02069f";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ network ];
|
|
meta = {
|
|
description = "A simple web-server with an interact style API";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|