lol

Merge pull request #259745 from Luflosi/update/kubo

kubo: 0.22.0 -> 0.23.0

authored by

Fabián Heredia Montiel and committed by
GitHub
f96d8113 90ee47bc

+5 -7
-2
nixos/modules/services/network-filesystems/kubo.nix
··· 203 203 default = [ 204 204 "/ip4/0.0.0.0/tcp/4001" 205 205 "/ip6/::/tcp/4001" 206 - "/ip4/0.0.0.0/udp/4001/quic" 207 206 "/ip4/0.0.0.0/udp/4001/quic-v1" 208 207 "/ip4/0.0.0.0/udp/4001/quic-v1/webtransport" 209 - "/ip6/::/udp/4001/quic" 210 208 "/ip6/::/udp/4001/quic-v1" 211 209 "/ip6/::/udp/4001/quic-v1/webtransport" 212 210 ];
+5 -5
pkgs/applications/networking/kubo/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "kubo"; 9 - version = "0.22.0"; # When updating, also check if the repo version changed and adjust repoVersion below 9 + version = "0.23.0"; # When updating, also check if the repo version changed and adjust repoVersion below 10 10 rev = "v${version}"; 11 11 12 - passthru.repoVersion = "14"; # Also update kubo-migrator when changing the repo version 12 + passthru.repoVersion = "15"; # Also update kubo-migrator when changing the repo version 13 13 14 14 # Kubo makes changes to its source tarball that don't match the git source. 15 15 src = fetchurl { 16 16 url = "https://github.com/ipfs/kubo/releases/download/${rev}/kubo-source.tar.gz"; 17 - hash = "sha256-TX5ZM8Kyj3LZ12Ro7MsHRd+P5XLk/mU7DUxZaopSEV0="; 17 + hash = "sha256-ycXn8h8sFGJXVMldneN51lZgXoPaZ/XeXLtqqJ4w6H0="; 18 18 }; 19 19 20 20 # tarball contains multiple files/directories ··· 37 37 38 38 postPatch = '' 39 39 substituteInPlace 'misc/systemd/ipfs.service' \ 40 - --replace '/usr/bin/ipfs' "$out/bin/ipfs" 40 + --replace '/usr/local/bin/ipfs' "$out/bin/ipfs" 41 41 substituteInPlace 'misc/systemd/ipfs-hardened.service' \ 42 - --replace '/usr/bin/ipfs' "$out/bin/ipfs" 42 + --replace '/usr/local/bin/ipfs' "$out/bin/ipfs" 43 43 ''; 44 44 45 45 postInstall = ''