My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/git/paf.nix

57 lines
755 B

{ lib, buildDunePackage
, git
, mimic
, paf
, ca-certs-nss
, fmt
, ipaddr
, logs
, lwt
, mirage-clock
, mirage-stack
, mirage-time
, result
, rresult
, tls
, uri
, bigarray-compat
, bigstringaf
, domain-name
, httpaf
, mirage-flow
, tls-mirage
}:
buildDunePackage {
pname = "git-paf";
inherit (git) version src minimumOCamlVersion useDune2;
propagatedBuildInputs = [
git
mimic
paf
ca-certs-nss
fmt
lwt
result
rresult
ipaddr
logs
mirage-clock
mirage-stack
mirage-time
tls
uri
bigarray-compat
bigstringaf
domain-name
httpaf
mirage-flow
tls-mirage
];
meta = git.meta // {
description = "A package to use HTTP-based ocaml-git with MirageOS backend";
};
}