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
84 lines
1.1 KiB
Nix
84 lines
1.1 KiB
Nix
{
|
|
buildDunePackage,
|
|
git,
|
|
rresult,
|
|
bigstringaf,
|
|
fmt,
|
|
bos,
|
|
fpath,
|
|
uri,
|
|
digestif,
|
|
logs,
|
|
lwt,
|
|
astring,
|
|
cmdliner,
|
|
decompress,
|
|
domain-name,
|
|
ipaddr,
|
|
mtime,
|
|
tcpip,
|
|
mirage-flow,
|
|
alcotest,
|
|
alcotest-lwt,
|
|
base64,
|
|
cstruct,
|
|
ke,
|
|
mirage-crypto-rng,
|
|
git-binary,
|
|
mimic,
|
|
tls,
|
|
cacert,
|
|
happy-eyeballs-lwt,
|
|
git-mirage,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "git-unix";
|
|
inherit (git) version src;
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
buildInputs = [
|
|
cmdliner
|
|
tcpip
|
|
];
|
|
propagatedBuildInputs = [
|
|
rresult
|
|
bigstringaf
|
|
fmt
|
|
bos
|
|
fpath
|
|
digestif
|
|
logs
|
|
lwt
|
|
astring
|
|
decompress
|
|
domain-name
|
|
ipaddr
|
|
mirage-flow
|
|
cstruct
|
|
mimic
|
|
tls
|
|
git
|
|
happy-eyeballs-lwt
|
|
git-mirage
|
|
];
|
|
checkInputs = [
|
|
alcotest
|
|
alcotest-lwt
|
|
base64
|
|
ke
|
|
mirage-crypto-rng
|
|
uri
|
|
mtime
|
|
cacert # sets up NIX_SSL_CERT_FILE
|
|
];
|
|
nativeCheckInputs = [ git-binary ];
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Unix backend for the Git protocol(s)";
|
|
inherit (git.meta) homepage license maintainers;
|
|
};
|
|
}
|