about summary refs log tree commit diff
path: root/pkgs/applications/networking/kubo
diff options
context:
space:
mode:
authorLuflosi <luflosi@luflosi.de>2023-10-08 13:31:57 +0200
committerLuflosi <luflosi@luflosi.de>2023-10-08 19:21:26 +0200
commit73a8ba2724b3ee24f722dd444bb755d7acf6c43f (patch)
treee7b797c72e2eec303385c2276ac98f24f760ccc3 /pkgs/applications/networking/kubo
parent2181204bc2c2c53517bde4ffeae3627b81a8eda5 (diff)
kubo: cleanup
Remove two unused function arguments. They became superfluous with 73b773d57469c17ca5f757908658260e20258bcc.
Also put every function argument into its own line so new additions and removals create a nicer git diff.
Also fix a typo in a comment.
Diffstat (limited to 'pkgs/applications/networking/kubo')
-rw-r--r--pkgs/applications/networking/kubo/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/applications/networking/kubo/default.nix b/pkgs/applications/networking/kubo/default.nix
index 793f8b8d8613e..defb898b44720 100644
--- a/pkgs/applications/networking/kubo/default.nix
+++ b/pkgs/applications/networking/kubo/default.nix
@@ -1,4 +1,8 @@
-{ lib, buildGoModule, fetchurl, nixosTests, openssl, pkg-config }:
+{ lib
+, buildGoModule
+, fetchurl
+, nixosTests
+}:
 
 buildGoModule rec {
   pname = "kubo";
@@ -7,7 +11,7 @@ buildGoModule rec {
 
   passthru.repoVersion = "14"; # Also update kubo-migrator when changing the repo version
 
-  # Kubo makes changes to it's source tarball that don't match the git source.
+  # Kubo makes changes to its source tarball that don't match the git source.
   src = fetchurl {
     url = "https://github.com/ipfs/kubo/releases/download/${rev}/kubo-source.tar.gz";
     hash = "sha256-TX5ZM8Kyj3LZ12Ro7MsHRd+P5XLk/mU7DUxZaopSEV0=";