depot/third_party/nixpkgs/pkgs/development/ocaml-modules/mrmime/default.nix
Default email 24fdeddc0a Project import generated by Copybara.
GitOrigin-RevId: 2768c7d042a37de65bb1b5b3268fc987e534c49d
2024-10-23 09:41:50 +03:00

70 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.6.1";
src = fetchurl {
url = "https://github.com/mirage/mrmime/releases/download/v${version}/mrmime-${version}.tbz";
hash = "sha256-Dzsr7xPzu5RIzIdubF4OAAjHJY7CdBVnHRZxQbcCsBY=";
};
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";
};
}