30468489ca
svn path=/nixpkgs/trunk/; revision=18756
13 lines
297 B
Nix
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";
|
|
};
|
|
})
|
|
|