mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 13:24:29 +00:00
5ea573ca47
ocamlPackages.asn1-combinators: 0.2.6 → 0.3.1 ocamlPackages.awa: 0.3.1 → 0.4.0 ocamlPackages.ca-certs: 0.2.3 → 1.0.0 ocamlPackages.ca-certs-nss: 3.101 → 3.103 ocamlPackages.conduit: 6.2.3 → 7.0.0 ocamlPackages.dns: 8.0.0 → 9.0.0 ocamlPackages.erm_xmpp: 0.3+20220404 → 0.3+20241009 ocamlPackages.git: 3.16.1 → 3.17.0 ocamlPackages.hkdf: 1.0.4 → 2.0.0 ocamlPackages.http-mirage-client: 0.0.6 → 0.0.7 ocamlPackages.letsencrypt: 0.5.1 → 1.0.0 ocamlPackages.paf: 0.6.0 → 0.7.0 ocamlPackages.pbkdf: 1.2.0 → 2.0.0 ocamlPackages.randomconv: 0.1.3 → 0.2.0 ocamlPackages.tcpip: 8.1.0 → 8.2.0 ocamlPackages.tls: 0.17.5 → 1.0.1 ocamlPackages.x509: 0.16.5 → 1.0.2 ocamlPackages.mrmime: disable tests ocamlPackages.chacha: mark as broken ocamlPackages.opium: mark as broken ocamlPackages.otr: mark as broken ocamlPackages.riot: mark as broken
48 lines
1.3 KiB
Nix
48 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
|
|
};
|
|
}
|