From 73b773d57469c17ca5f757908658260e20258bcc Mon Sep 17 00:00:00 2001 From: Jorropo Date: Fri, 11 Aug 2023 02:29:20 +0200 Subject: [PATCH] kubo: remove openssl from the build We removed openssl support from go-libp2p and thus Kubo: - https://github.com/libp2p/go-libp2p/issues/1952 Now we exclusively on the options provided by the golang std librairy. The openssl tag is now a noop, having it does not cause any harm except making nixos install openssl for no reason while using kubo but I guess many systems already build openssl but might as well not have it. --- pkgs/applications/networking/kubo/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/applications/networking/kubo/default.nix b/pkgs/applications/networking/kubo/default.nix index 3f32abbd8fdc..dccd827b1295 100644 --- a/pkgs/applications/networking/kubo/default.nix +++ b/pkgs/applications/networking/kubo/default.nix @@ -25,10 +25,6 @@ buildGoModule rec { subPackages = [ "cmd/ipfs" ]; - buildInputs = [ openssl ]; - nativeBuildInputs = [ pkg-config ]; - tags = [ "openssl" ]; - passthru.tests.kubo = nixosTests.kubo; vendorSha256 = null;