Merge pull request #229670 from Luflosi/update/kubo

kubo: 0.19.1 -> 0.19.2

authored by

Jörg Thalheim and committed by
GitHub
c093c8fc e518e110

+3 -3
+3 -3
pkgs/applications/networking/kubo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubo"; 5 - version = "0.19.1"; # When updating, also check if the repo version changed and adjust repoVersion below 5 + version = "0.19.2"; # When updating, also check if the repo version changed and adjust repoVersion below 6 6 rev = "v${version}"; 7 7 8 8 passthru.repoVersion = "13"; # Also update kubo-migrator when changing the repo version ··· 10 10 # Kubo makes changes to it's source tarball that don't match the git source. 11 11 src = fetchurl { 12 12 url = "https://github.com/ipfs/kubo/releases/download/${rev}/kubo-source.tar.gz"; 13 - hash = "sha256-gQIJKV5MD0TZ0GYdLFWNePnExThqEjUmZKCAHhGwtMU="; 13 + hash = "sha256-HPhlKAavINaN0SJHWmeJRx43jfeHeYDZb3/dZ55kMLI="; 14 14 }; 15 15 16 16 # tarball contains multiple files/directories ··· 58 58 license = licenses.mit; 59 59 platforms = platforms.unix; 60 60 mainProgram = "ipfs"; 61 - maintainers = with maintainers; [ fpletz ]; 61 + maintainers = with maintainers; [ Luflosi fpletz ]; 62 62 }; 63 63 }