nixpkgs/pkgs/development/libraries/haskell/httpd-shed/default.nix

13 lines
297 B
Nix
Raw Normal View History

{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";
};
})