nixpkgs/pkgs/applications/networking/ipfs/default.nix

29 lines
657 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2016-06-05 17:46:06 -07:00
buildGoModule rec {
pname = "ipfs";
2020-03-13 12:37:56 -07:00
version = "0.4.23";
2017-10-02 11:35:45 -07:00
rev = "v${version}";
2016-06-05 17:46:06 -07:00
src = fetchFromGitHub {
owner = "ipfs";
repo = "go-ipfs";
inherit rev;
2020-03-13 12:37:56 -07:00
sha256 = "19m1bhqf1jghdv2ngdnjdk1kvjcxbkgm1ccdkmkabv4ii43h8jwm";
2016-06-05 17:46:06 -07:00
};
2020-03-13 12:37:56 -07:00
postPatch = ''
rm -rf test/dependencies
'';
modSha256 = "12m4ind1s8zaa6kssblc28z2cafy20w2jp80kzif39hg5ar9bijm";
2016-06-05 17:46:06 -07:00
meta = with stdenv.lib; {
description = "A global, versioned, peer-to-peer filesystem";
homepage = "https://ipfs.io/";
2016-06-05 17:46:06 -07:00
license = licenses.mit;
2016-10-28 20:19:41 -07:00
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz ];
2016-06-05 17:46:06 -07:00
};
}