Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
44 lines
808 B
Nix
44 lines
808 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, fetchurl
|
|
, angstrom
|
|
, ipaddr
|
|
, base64
|
|
, pecu
|
|
, uutf
|
|
, alcotest
|
|
, cmdliner
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "emile";
|
|
version = "1.1";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
duneVersion = "3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/dinosaure/emile/releases/download/v${version}/emile-v${version}.tbz";
|
|
hash = "sha256:0r1141makr0b900aby1gn0fccjv1qcqgyxib3bzq8fxmjqwjan8p";
|
|
};
|
|
|
|
buildInputs = [ cmdliner ];
|
|
|
|
propagatedBuildInputs = [
|
|
angstrom
|
|
ipaddr
|
|
base64
|
|
pecu
|
|
uutf
|
|
];
|
|
|
|
doCheck = true;
|
|
checkInputs = [ alcotest ];
|
|
|
|
meta = with lib; {
|
|
description = "Parser of email address according RFC822";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/dinosaure/emile";
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
};
|
|
}
|