Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
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";
|
|
};
|
|
}
|