From 22a183bf789cb60a2d80d757b1b6c25786cf3829 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 25 Jun 2022 18:41:08 +0200 Subject: [PATCH] ocamlPackages.hacl_x25519: remove at 0.2.2 --- .../ocaml-modules/hacl_x25519/default.nix | 24 ------------------- pkgs/top-level/ocaml-packages.nix | 2 -- 2 files changed, 26 deletions(-) delete mode 100644 pkgs/development/ocaml-modules/hacl_x25519/default.nix diff --git a/pkgs/development/ocaml-modules/hacl_x25519/default.nix b/pkgs/development/ocaml-modules/hacl_x25519/default.nix deleted file mode 100644 index 245b61ef1aae..000000000000 --- a/pkgs/development/ocaml-modules/hacl_x25519/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ lib, buildDunePackage, fetchurl, benchmark, cstruct -, alcotest , eqaf, hex, ppx_blob, ppx_deriving_yojson, stdlib-shims, yojson }: - -buildDunePackage rec { - pname = "hacl_x25519"; - version = "0.2.2"; - - src = fetchurl { - url = "https://github.com/mirage/hacl/releases/download/v${version}/${pname}-v${version}.tbz"; - sha256 = "sha256-gWdUqOj5c50ObZjO1uULAmoo1ZIyRFxQUaZuQzLMVy0="; - }; - - useDune2 = true; - propagatedBuildInputs = [ eqaf cstruct ]; - checkInputs = [ alcotest benchmark hex ppx_blob ppx_deriving_yojson stdlib-shims yojson ]; - doCheck = true; - - meta = with lib; { - description = "Primitives for Elliptic Curve Cryptography taken from Project Everest"; - homepage = "https://github.com/mirage/hacl"; - license = licenses.mit; - maintainers = with maintainers; [ sternenseemann ]; - }; -} diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index efebf7e38533..d05abaddcfa8 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -502,8 +502,6 @@ let hack_parallel = callPackage ../development/ocaml-modules/hack_parallel { }; - hacl_x25519 = callPackage ../development/ocaml-modules/hacl_x25519 { }; - hacl-star = callPackage ../development/ocaml-modules/hacl-star { }; hacl-star-raw = callPackage ../development/ocaml-modules/hacl-star/raw.nix { };