nixpkgs/pkgs/development/ocaml-modules/httpaf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
699 B
Nix
Raw Normal View History

{
lib,
fetchFromGitHub,
buildDunePackage,
angstrom,
faraday,
result,
alcotest,
2020-11-13 07:12:34 +00:00
}:
buildDunePackage rec {
pname = "httpaf";
version = "0.7.1";
2020-11-13 07:12:34 +00:00
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
owner = "inhabitedtype";
repo = pname;
rev = version;
sha256 = "0zk78af3qyvf6w66mg8sxygr6ndayzqw5s3zfxibvn121xwni26z";
};
checkInputs = [ alcotest ];
propagatedBuildInputs = [
angstrom
faraday
result
];
doCheck = true;
meta = {
description = "High-performance, memory-efficient, and scalable web server for OCaml";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.vbgl ];
inherit (src.meta) homepage;
};
}