depot/third_party/nixpkgs/pkgs/development/ocaml-modules/rock/default.nix
Default email a3d4720129 Project import generated by Copybara.
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
2022-12-28 22:21:41 +01:00

35 lines
717 B
Nix

{ lib, fetchurl, buildDunePackage
, bigstringaf
, hmap
, httpaf
, lwt
, sexplib0
}:
buildDunePackage rec {
pname = "rock";
version = "0.20.0";
minimalOCamlVersion = "4.08";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/rgrinberg/opium/releases/download/${version}/opium-${version}.tbz";
hash = "sha256-MmuRhm3pC69TX4t9Sy/yPjnZUuVzwEs8E/EFS1n/L7Y=";
};
propagatedBuildInputs = [
bigstringaf
hmap
httpaf
lwt
sexplib0
];
meta = {
description = "Minimalist framework to build extensible HTTP servers and clients";
homepage = "https://github.com/rgrinberg/opium";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}