about summary refs log tree commit diff
path: root/pkgs/applications/networking/kubo
diff options
context:
space:
mode:
authorJorropo <jorropo.pgm@gmail.com>2023-08-11 02:29:20 +0200
committerJorropo <jorropo.pgm@gmail.com>2023-08-11 02:30:27 +0200
commit73b773d57469c17ca5f757908658260e20258bcc (patch)
treecad6a1ac22dedf771d320b99e36639dc31e39a33 /pkgs/applications/networking/kubo
parentcf73a86c35a84de0e2f3ba494327cf6fb51c0dfd (diff)
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.
Diffstat (limited to 'pkgs/applications/networking/kubo')
-rw-r--r--pkgs/applications/networking/kubo/default.nix4
1 files changed, 0 insertions, 4 deletions
diff --git a/pkgs/applications/networking/kubo/default.nix b/pkgs/applications/networking/kubo/default.nix
index 3f32abbd8fdc8..dccd827b12951 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;