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

29 lines
657 B
Nix
Raw Normal View History

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