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: 6ab2aea0035a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b257346c422e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 4, 2019

  1. ipget: 0.2.5 -> 0.3.2

    Unbreak the build by updating to a newer version.
    andir committed Mar 4, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    primeos Michael Weiss
    Copy the full SHA
    1d86cd4 View commit details

Commits on Mar 5, 2019

  1. Merge pull request #56855 from andir/ipget

    ipget: 0.2.5 -> 0.3.2
    veprbl authored Mar 5, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b257346 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/applications/networking/ipget/default.nix
10 changes: 5 additions & 5 deletions pkgs/applications/networking/ipget/default.nix
Original file line number Diff line number Diff line change
@@ -2,25 +2,25 @@

buildGoPackage rec {
name = "ipget-${version}";
version = "0.2.5";
version = "0.3.2";
rev = "v${version}";

goPackagePath = "github.com/ipfs/ipget";

extraSrcPaths = [
(fetchgx {
inherit name src;
sha256 = "1d4w8zl5mcppn3d4bl7qdkiqlf8gi3z2a62nygx17bqpa3da8cf3";
sha256 = "07l9hpkhk5phr95zp1l5wd3ii38bw91hy4dlw2rsfbzcsc8bq4s8";
})
];

goDeps = ../../../tools/package-management/gx/deps.nix;

src = fetchFromGitHub {
owner = "ipfs";
repo = "ipget";
inherit rev;
sha256 = "0a8yxqhl469ipiznrgkp3yi1xz3xzcbpx60wabqppq8hccrdiybk";
sha256 = "1ljf5ddvc1p5swmgn4m1ivfj74fykk56myk2r9c4grdjzksf4a15";
};

meta = with stdenv.lib; {