1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00
nixpkgs/pkgs/development/ocaml-modules/http-mirage-client/default.nix
2023-08-03 00:18:43 +02:00

54 lines
961 B
Nix

{ lib
, fetchurl
, buildDunePackage
, h2
, httpaf
, mimic-happy-eyeballs
, mirage-clock
, paf
, tcpip
, x509
, alcotest-lwt
, mirage-clock-unix
, mirage-crypto-rng
, mirage-time-unix
}:
buildDunePackage rec {
pname = "http-mirage-client";
version = "0.0.5";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/roburio/http-mirage-client/releases/download/v${version}/http-mirage-client-${version}.tbz";
hash = "sha256-w/dMv5QvgglTFj9V4wRoDqK+36YeE0xWLxcAVS0oHz0=";
};
propagatedBuildInputs = [
h2
httpaf
mimic-happy-eyeballs
mirage-clock
paf
tcpip
x509
];
doCheck = true;
checkInputs = [
alcotest-lwt
mirage-clock-unix
mirage-crypto-rng
mirage-time-unix
];
meta = {
description = "HTTP client for MirageOS";
homepage = "https://github.com/roburio/http-mirage-client";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}