ocamlPackages.ca-certs-nss: 3.108 → 3.108-1 ocamlPackages.conduit: 7.1.0 → 8.0.0 ocamlPackages.dns: 9.1.0 → 10.0.0 ocamlPackages.git: 3.17.0 → 3.18.0 ocamlPackages.happy-eyeballs: 1.2.2 → 2.0.0 ocamlPackages.http-mirage-client: 0.0.8 → 0.0.10 ocamlPackages.letsencrypt: 1.0.0 → 1.1.0 ocamlPackages.paf: 0.7.0 → 0.8.0
85 lines
1.0 KiB
Nix
85 lines
1.0 KiB
Nix
{
|
|
buildDunePackage,
|
|
git,
|
|
mimic,
|
|
mimic-happy-eyeballs,
|
|
base64,
|
|
git-paf,
|
|
awa,
|
|
awa-mirage,
|
|
tls,
|
|
tls-mirage,
|
|
uri,
|
|
happy-eyeballs-mirage,
|
|
happy-eyeballs,
|
|
ca-certs-nss,
|
|
mirage-crypto,
|
|
ptime,
|
|
x509,
|
|
cstruct,
|
|
tcpip,
|
|
domain-name,
|
|
fmt,
|
|
ipaddr,
|
|
lwt,
|
|
mirage-flow,
|
|
mirage-ptime,
|
|
mirage-sleep,
|
|
alcotest,
|
|
alcotest-lwt,
|
|
bigstringaf,
|
|
logs,
|
|
ke,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "git-mirage";
|
|
|
|
inherit (git) version src;
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
buildInputs = [
|
|
happy-eyeballs-mirage
|
|
ipaddr
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
git
|
|
mimic
|
|
mimic-happy-eyeballs
|
|
base64
|
|
git-paf
|
|
awa
|
|
awa-mirage
|
|
tls
|
|
tls-mirage
|
|
uri
|
|
happy-eyeballs
|
|
ca-certs-nss
|
|
mirage-crypto
|
|
ptime
|
|
x509
|
|
cstruct
|
|
tcpip
|
|
domain-name
|
|
fmt
|
|
lwt
|
|
mirage-ptime
|
|
mirage-flow
|
|
mirage-sleep
|
|
];
|
|
|
|
checkInputs = [
|
|
alcotest
|
|
alcotest-lwt
|
|
bigstringaf
|
|
logs
|
|
ke
|
|
];
|
|
|
|
meta = git.meta // {
|
|
description = "Package to use ocaml-git with MirageOS backend";
|
|
};
|
|
}
|