Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 03fc030c459a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: af0083f13516
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 8, 2019

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    4c1cb03 View commit details

Commits on Mar 2, 2019

  1. Merge pull request #55466 from jglukasik/ipfs-cluster-0.8.0

    ipfs-cluster: 0.7.0 -> 0.8.0
    andir authored Mar 2, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    af0083f View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/networking/ipfs-cluster/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/networking/ipfs-cluster/default.nix
Original file line number Diff line number Diff line change
@@ -2,23 +2,23 @@

buildGoPackage rec {
name = "ipfs-cluster-${version}";
version = "0.7.0";
version = "0.8.0";
rev = "v${version}";

goPackagePath = "github.com/ipfs/ipfs-cluster";

extraSrcPaths = [
(fetchgx {
inherit name src;
sha256 = "19ljx4q9msrv5wwyd85l01l320lhwgma5z3b756ldgj9fs8p9ph6";
sha256 = "0vqj6h885dy0d3zabris8f5sbqdwm5ljhpf8z466pwm7qx8m5afn";
})
];

src = fetchFromGitHub {
owner = "ipfs";
repo = "ipfs-cluster";
inherit rev;
sha256 = "1zqy4zzi33z16fny1dnhqa8z7czrggvbxdxs750gxzbnd9vqzda1";
sha256 = "0q5j825hzsrlfv3y79376l6pd2d3hiczymw3w9nqh955rphjg7ci";
};

nativeBuildInputs = [ gx-go ];