Unverified Commit 73a8ba27 authored by Luflosi's avatar Luflosi
Browse files

kubo: cleanup

Remove two unused function arguments. They became superfluous with 73b773d5.
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.
parent 2181204b
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
{ 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=";