Skip to content

Commit

Permalink
ipget: 0.3.2 -> 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Luflosi committed May 23, 2020
1 parent fcea691 commit 8e3c58d
Showing 1 changed file with 8 additions and 17 deletions.
25 changes: 8 additions & 17 deletions pkgs/applications/networking/ipget/default.nix
Original file line number Diff line number Diff line change
@@ -1,32 +1,23 @@
{ stdenv, buildGoPackage, fetchFromGitHub, fetchgx }:
{ stdenv, buildGoModule, fetchFromGitHub }:

buildGoPackage rec {
buildGoModule rec {
pname = "ipget";
version = "0.3.2";
rev = "v${version}";

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

extraSrcPaths = [
(fetchgx {
inherit src;name = "${pname}-${version}";
sha256 = "07l9hpkhk5phr95zp1l5wd3ii38bw91hy4dlw2rsfbzcsc8bq4s8";
})
];

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

src = fetchFromGitHub {
owner = "ipfs";
repo = "ipget";
inherit rev;
sha256 = "1ljf5ddvc1p5swmgn4m1ivfj74fykk56myk2r9c4grdjzksf4a15";
rev = "v${version}";
sha256 = "14ygij6hj6bd4g4aw6jgfbi1fgpal0jgf1hr22zxm16dpx3vva6b";
};

vendorSha256 = "0vy21pdqk6q5fw7wlcv51myhh9y79n2qhvy61rmblwhxlrkh6sdv";

meta = with stdenv.lib; {
description = "Retrieve files over IPFS and save them locally";
homepage = "https://ipfs.io/";
license = licenses.mit;
maintainers = with maintainers; [ Luflosi ];
platforms = platforms.unix;
};
}

0 comments on commit 8e3c58d

Please sign in to comment.