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
72 lines
1.1 KiB
Nix
72 lines
1.1 KiB
Nix
{
|
|
afl-persistent,
|
|
alcotest,
|
|
angstrom,
|
|
base64,
|
|
bigarray-overlap,
|
|
bigstringaf,
|
|
buildDunePackage,
|
|
cmdliner,
|
|
emile,
|
|
fetchurl,
|
|
fpath,
|
|
hxd,
|
|
ipaddr,
|
|
jsonm,
|
|
ke,
|
|
lib,
|
|
mirage-crypto-rng,
|
|
pecu,
|
|
prettym,
|
|
ptime,
|
|
rosetta,
|
|
unstrctrd,
|
|
uutf,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "mrmime";
|
|
version = "0.7.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/mrmime/releases/download/v${version}/mrmime-${version}.tbz";
|
|
hash = "sha256-w23xtro9WgyLLwqdwfqLMN/ZDqwpvFcEvurbsqnsJLc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
angstrom
|
|
base64
|
|
emile
|
|
ipaddr
|
|
ke
|
|
pecu
|
|
prettym
|
|
ptime
|
|
rosetta
|
|
unstrctrd
|
|
uutf
|
|
bigarray-overlap
|
|
bigstringaf
|
|
];
|
|
|
|
checkInputs = [
|
|
afl-persistent
|
|
alcotest
|
|
cmdliner
|
|
fpath
|
|
hxd
|
|
jsonm
|
|
mirage-crypto-rng
|
|
];
|
|
# Checks are not compatible with mirage-crypto-rng ≥ 1.0
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Parser and generator of mail in OCaml";
|
|
homepage = "https://github.com/mirage/mrmime";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "mrmime.generate";
|
|
};
|
|
}
|