about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorUlrik Strid <ulrik.strid@outlook.com>2023-06-20 09:39:08 +0200
committerUlrik Strid <ulrik.strid@outlook.com>2023-06-20 09:39:08 +0200
commit2278b4b61b2d5e986294d3bd370f0fc57a83d583 (patch)
treea2c20ff9aee5645a97970b641896a23e688e5cf8 /pkgs/development/ocaml-modules
parent5ba6eab7c2e153f2532e4211c0b362930bc8d2dd (diff)
downloadnixlib-2278b4b61b2d5e986294d3bd370f0fc57a83d583.tar
nixlib-2278b4b61b2d5e986294d3bd370f0fc57a83d583.tar.gz
nixlib-2278b4b61b2d5e986294d3bd370f0fc57a83d583.tar.bz2
nixlib-2278b4b61b2d5e986294d3bd370f0fc57a83d583.tar.lz
nixlib-2278b4b61b2d5e986294d3bd370f0fc57a83d583.tar.xz
nixlib-2278b4b61b2d5e986294d3bd370f0fc57a83d583.tar.zst
nixlib-2278b4b61b2d5e986294d3bd370f0fc57a83d583.zip
ocamlPackages.bls12-381-hash: drop at 1.0.0
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/bls12-381-hash/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/development/ocaml-modules/bls12-381-hash/default.nix b/pkgs/development/ocaml-modules/bls12-381-hash/default.nix
deleted file mode 100644
index 1b39439c747a..000000000000
--- a/pkgs/development/ocaml-modules/bls12-381-hash/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ lib
-, fetchFromGitLab
-, buildDunePackage
-, bls12-381
-}:
-
-buildDunePackage rec {
-  pname = "bls12-381-hash";
-  version = "1.0.0";
-  src = fetchFromGitLab {
-    owner = "nomadic-labs";
-    repo = "cryptography/ocaml-bls12-381-hash";
-    rev = "${version}";
-    sha256 = "sha256-cfsSVmN4rbKcLcPcy6NduZktJhPXiVdK75LypmaSe9I=";
-  };
-
-  duneVersion = "3";
-
-  propagatedBuildInputs = [ bls12-381 ];
-
-  meta = {
-    description = "Implementation of some cryptographic hash primitives using the scalar field of BLS12-381";
-    license = lib.licenses.mit;
-    homepage = "https://gitlab.com/nomadic-labs/privacy-team";
-    maintainers = [ lib.maintainers.ulrikstrid ];
-  };
-}