mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 10:24:07 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
ocaml,
|
|
|
|
alcotest,
|
|
cstruct,
|
|
mirage-crypto,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "chacha";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "abeaumont";
|
|
repo = "ocaml-chacha";
|
|
rev = version;
|
|
hash = "sha256-PmeiFloU0k3SqOK1VjaliiCEzDzrzyMSasgnO5fJS1k=";
|
|
};
|
|
|
|
# Ensure compatibility with cstruct ≥ 6.1.0
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/abeaumont/ocaml-chacha/commit/fbe4a0a808226229728a68f278adf370251196fd.patch";
|
|
sha256 = "sha256-y7X9toFDrgdv3qmFmUs7K7QS+Gy45rRLulKy48m7uqc=";
|
|
})
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
cstruct
|
|
mirage-crypto
|
|
];
|
|
|
|
# alcotest isn't available for OCaml < 4.05 due to fmt
|
|
doCheck = lib.versionAtLeast ocaml.version "4.05";
|
|
checkInputs = [ alcotest ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/abeaumont/ocaml-chacha";
|
|
description = "ChaCha20, ChaCha12 and ChaCha8 encryption functions, in OCaml";
|
|
longDescription = ''
|
|
An OCaml implementation of ChaCha functions, both ChaCha20 and the reduced
|
|
ChaCha8 and ChaCha12 functions. The hot loop is implemented in C for efficiency
|
|
reasons.
|
|
'';
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ fufexan ];
|
|
broken = true; # Not compatible with mirage-crypto ≥ 1.0
|
|
};
|
|
}
|