Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ipfs: 0.13.0 -> 0.13.1 #180999

Merged
merged 3 commits into from
Jul 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion nixos/tests/ipfs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ import ./make-test-python.nix ({ pkgs, ...} : {
"echo fnord3 | ipfs --api /ip4/127.0.0.1/tcp/2324 add --quieter"
)

fuse.succeed(f"cat /ipfs/{ipfs_hash.strip()} | grep fnord3")
# The FUSE mount functionality is broken as of v0.13.0.
# See https://github.com/ipfs/kubo/issues/9044.
# fuse.succeed(f"cat /ipfs/{ipfs_hash.strip()} | grep fnord3")
'';
})
6 changes: 3 additions & 3 deletions pkgs/applications/networking/ipfs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

buildGoModule rec {
pname = "ipfs";
version = "0.13.0"; # When updating, also check if the repo version changed and adjust repoVersion below
version = "0.13.1"; # When updating, also check if the repo version changed and adjust repoVersion below
rev = "v${version}";

repoVersion = "12"; # Also update ipfs-migrator when changing the repo version
passthru.repoVersion = "12"; # Also update ipfs-migrator when changing the repo version

# go-ipfs makes changes to it's source tarball that don't match the git source.
src = fetchurl {
url = "https://github.com/ipfs/go-ipfs/releases/download/${rev}/go-ipfs-source.tar.gz";
sha256 = "sha256-eEIHsmtD3vF48RVFHEz28gkVv7u50pMBE8Z+oaM6pLM=";
sha256 = "sha256-kGtqFb4Fxx9mxDqX8YSqnY875sU70pzL2BwWBQg5sTU=";
};

# tarball contains multiple files/directories
Expand Down