summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2022-05-03 19:10:32 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2022-05-10 17:47:59 +0200
commitcbd4728f8aa0481f252da5a654a224d134d3fa06 (patch)
treebfa73e8ee8187b83aa5c3d9e1a843fe3d807838f
parent5444c0052ccac18831458cfbf51cf65855895b39 (diff)
downloadnixpkgs-cbd4728f8aa0481f252da5a654a224d134d3fa06.tar
nixpkgs-cbd4728f8aa0481f252da5a654a224d134d3fa06.tar.gz
nixpkgs-cbd4728f8aa0481f252da5a654a224d134d3fa06.tar.bz2
nixpkgs-cbd4728f8aa0481f252da5a654a224d134d3fa06.tar.lz
nixpkgs-cbd4728f8aa0481f252da5a654a224d134d3fa06.tar.xz
nixpkgs-cbd4728f8aa0481f252da5a654a224d134d3fa06.tar.zst
nixpkgs-cbd4728f8aa0481f252da5a654a224d134d3fa06.zip
opa: drop spurious dependency on cryptokit
-rw-r--r--pkgs/development/compilers/opa/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/opa/default.nix b/pkgs/development/compilers/opa/default.nix
index 8e70ca8dac2..0959c6da9ac 100644
--- a/pkgs/development/compilers/opa/default.nix
+++ b/pkgs/development/compilers/opa/default.nix
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ which perl jdk openssl coreutils zlib ncurses
     makeWrapper gcc binutils gnumake nodejs
   ] ++ (with ocamlPackages; [
-    ocaml findlib ssl cryptokit camlzip ulex ocamlgraph camlp4
+    ocaml findlib ssl camlzip ulex ocamlgraph camlp4
   ]);
 
   NIX_LDFLAGS = lib.optionalString (!stdenv.isDarwin) "-lgcc_s";