From 81591eaa139fa566ccbe2868fb3290853fa98ceb Mon Sep 17 00:00:00 2001 From: Timon Vonk Date: Thu, 22 Jun 2023 16:52:48 +0200 Subject: [PATCH 1/3] build(shell.nix): add openssl package to the build dependencies --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index 049068bb2..bebc7c433 100644 --- a/shell.nix +++ b/shell.nix @@ -29,6 +29,7 @@ in fastmod pebble kondo + openssl ]; PROTOC = "${protobuf}/bin/protoc"; From 9c3d16d0590c7dabe1e2134c6f13bcfbd2aa2fc2 Mon Sep 17 00:00:00 2001 From: Timon Vonk Date: Fri, 23 Jun 2023 12:12:06 +0200 Subject: [PATCH 2/3] build(shell.nix): add openssl to nativeBuildInputs to fix build error related to missing openssl library --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index bebc7c433..cf1aeed33 100644 --- a/shell.nix +++ b/shell.nix @@ -8,6 +8,7 @@ in name = "moz_overlay_shell"; nativeBuildInputs = with nixpkgs; [ pkg-config + openssl ]; buildInputs = with nixpkgs; [ ((rustChannelOf{ channel = "1.70.0"; }).rust.override { From acea604f48dc937192120148e69dcf515bcd02b9 Mon Sep 17 00:00:00 2001 From: Timon Vonk Date: Fri, 23 Jun 2023 14:14:57 +0200 Subject: [PATCH 3/3] Remove double openssl in nix --- shell.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/shell.nix b/shell.nix index cf1aeed33..1fabb9267 100644 --- a/shell.nix +++ b/shell.nix @@ -30,7 +30,6 @@ in fastmod pebble kondo - openssl ]; PROTOC = "${protobuf}/bin/protoc";