about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/bls12-381-signature
diff options
context:
space:
mode:
authorUlrik Strid <ulrik.strid@outlook.com>2022-03-01 16:42:22 +0100
committerUlrik Strid <ulrik.strid@outlook.com>2023-02-03 08:59:34 +0100
commitc53a63adf11330c66d3f0ed0def74e0dacd2cd2a (patch)
treea8af7d43c6d03b0399390aef4b25b7d63daa4055 /pkgs/development/ocaml-modules/bls12-381-signature
parentd6ccd7658182294671cdb61ef7c5db46d7e78eb4 (diff)
ocamlPackages treewide: strictDeps all packages
Diffstat (limited to 'pkgs/development/ocaml-modules/bls12-381-signature')
-rw-r--r--pkgs/development/ocaml-modules/bls12-381-signature/default.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/development/ocaml-modules/bls12-381-signature/default.nix b/pkgs/development/ocaml-modules/bls12-381-signature/default.nix
index 378af4109cb6a..db0a383f925ee 100644
--- a/pkgs/development/ocaml-modules/bls12-381-signature/default.nix
+++ b/pkgs/development/ocaml-modules/bls12-381-signature/default.nix
@@ -1,11 +1,11 @@
-{
-  lib,
-  fetchzip,
-  buildDunePackage,
-  bls12-381,
-  alcotest,
-  bisect_ppx,
-  integers_stubs_js,
+{ lib
+, fetchzip
+, buildDunePackage
+, bls12-381
+, alcotest
+, bisect_ppx
+, integers_stubs_js
+,
 }:
 
 buildDunePackage rec {
@@ -20,7 +20,7 @@ buildDunePackage rec {
 
   propagatedBuildInputs = [ bls12-381 ];
 
-  nativeCheckInputs = [alcotest bisect_ppx integers_stubs_js];
+  checkInputs = [ alcotest bisect_ppx integers_stubs_js ];
 
   doCheck = true;
 
@@ -28,6 +28,6 @@ buildDunePackage rec {
     description = "Implementation of BLS signatures for the pairing-friendly curve BLS12-381";
     license = lib.licenses.mit;
     homepage = "https://gitlab.com/nomadic-labs/cryptography/ocaml-bls12-381-signature";
-    maintainers = [lib.maintainers.ulrikstrid];
+    maintainers = [ lib.maintainers.ulrikstrid ];
   };
 }