depot/third_party/nixpkgs/pkgs/development/ocaml-modules/opium/default.nix
Default email 4bac34ead1 Project import generated by Copybara.
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
2023-02-09 12:40:11 +01:00

62 lines
845 B
Nix

{ buildDunePackage
, lib
, fetchurl
, astring
, base64
, cmdliner
, fmt
, httpaf
, httpaf-lwt-unix
, logs
, magic-mime
, mirage-crypto
, mtime
, multipart-form-data
, ptime
, re
, rock
, tyxml
, uri
, yojson
, alcotest-lwt
}:
buildDunePackage rec {
pname = "opium";
minimalOCamlVersion = "4.08";
duneVersion = "3";
inherit (rock) src version;
propagatedBuildInputs = [
astring
base64
cmdliner
fmt
httpaf
httpaf-lwt-unix
logs
magic-mime
mirage-crypto
mtime
multipart-form-data
ptime
re
rock
tyxml
uri
yojson
];
doCheck = true;
checkInputs = [
alcotest-lwt
];
meta = {
description = "OCaml web framework";
homepage = "https://github.com/rgrinberg/opium";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.pmahoney ];
};
}