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
68 lines
1011 B
Nix
68 lines
1011 B
Nix
{
|
|
buildDunePackage,
|
|
lib,
|
|
fetchurl,
|
|
h1,
|
|
h2,
|
|
tls-mirage,
|
|
mimic,
|
|
ke,
|
|
bigstringaf,
|
|
faraday,
|
|
tls,
|
|
lwt,
|
|
logs,
|
|
fmt,
|
|
mirage-crypto-rng,
|
|
tcpip,
|
|
ptime,
|
|
uri,
|
|
alcotest-lwt,
|
|
cstruct,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "paf";
|
|
version = "0.8.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/dinosaure/paf-le-chien/releases/download/${version}/paf-${version}.tbz";
|
|
hash = "sha256-0q07gZpzUyDoWlA4m/P+EGSvvVKAZ7RwVkpOziqzG2M=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
propagatedBuildInputs = [
|
|
h1
|
|
h2
|
|
tls-mirage
|
|
mimic
|
|
ke
|
|
bigstringaf
|
|
faraday
|
|
tls
|
|
cstruct
|
|
tcpip
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
lwt
|
|
logs
|
|
fmt
|
|
mirage-crypto-rng
|
|
ptime
|
|
uri
|
|
alcotest-lwt
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta = {
|
|
description = "HTTP/AF and MirageOS";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.sternenseemann ];
|
|
homepage = "https://github.com/dinosaure/paf-le-chien";
|
|
};
|
|
}
|