···23buildGoModule rec {
4 pname = "kubo";
5- version = "0.21.0"; # When updating, also check if the repo version changed and adjust repoVersion below
6 rev = "v${version}";
78 passthru.repoVersion = "14"; # Also update kubo-migrator when changing the repo version
···10 # Kubo makes changes to it's source tarball that don't match the git source.
11 src = fetchurl {
12 url = "https://github.com/ipfs/kubo/releases/download/${rev}/kubo-source.tar.gz";
13- hash = "sha256-tS7hiv7KnALR+hCn/TPUwqp/xIOLnQ3ReSb1bNBnwUY=";
14 };
1516 # tarball contains multiple files/directories
···23buildGoModule rec {
4 pname = "kubo";
5+ version = "0.22.0"; # When updating, also check if the repo version changed and adjust repoVersion below
6 rev = "v${version}";
78 passthru.repoVersion = "14"; # Also update kubo-migrator when changing the repo version
···10 # Kubo makes changes to it's source tarball that don't match the git source.
11 src = fetchurl {
12 url = "https://github.com/ipfs/kubo/releases/download/${rev}/kubo-source.tar.gz";
13+ hash = "sha256-TX5ZM8Kyj3LZ12Ro7MsHRd+P5XLk/mU7DUxZaopSEV0=";
14 };
1516 # tarball contains multiple files/directories
···80 description = "A handy way to save and run project-specific commands";
81 license = licenses.cc0;
82 maintainers = with maintainers; [ xrelkd jk adamcstephens ];
083 };
84}
···80 description = "A handy way to save and run project-specific commands";
81 license = licenses.cc0;
82 maintainers = with maintainers; [ xrelkd jk adamcstephens ];
83+ mainProgram = "just";
84 };
85}