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

34 lines
741 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2016-06-06 03:46:06 +03:00
buildGoModule rec {
pname = "ipfs";
2020-04-29 19:57:30 +03:00
version = "0.5.0";
2017-10-02 21:35:45 +03:00
rev = "v${version}";
2016-06-06 03:46:06 +03:00
src = fetchFromGitHub {
owner = "ipfs";
repo = "go-ipfs";
inherit rev;
2020-04-29 19:57:30 +03:00
sha256 = "0dbyvs49wyqj46c8hvz0fr4vpgfrdj1h8blniwzjf0jabgvw8nik";
2016-06-06 03:46:06 +03:00
};
2020-03-13 22:37:56 +03:00
postPatch = ''
rm -rf test/dependencies
2020-05-07 17:26:09 +03:00
patchShebangs plugin/loader/preload.sh
'';
buildPhase = ''
make install
2020-03-13 22:37:56 +03:00
'';
2020-04-29 19:57:30 +03:00
modSha256 = "00xgsvpl47miy6paxl8yn6p76h6ssccackh50z0l4r5s7wcc25q8";
2016-06-06 03:46:06 +03:00
meta = with stdenv.lib; {
description = "A global, versioned, peer-to-peer filesystem";
homepage = "https://ipfs.io/";
2016-06-06 03:46:06 +03:00
license = licenses.mit;
2016-10-29 06:19:41 +03:00
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz ];
2016-06-06 03:46:06 +03:00
};
}