1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 14:41:17 +00:00
nixpkgs/pkgs/applications/networking/ipfs/default.nix

27 lines
613 B
Nix
Raw Normal View History

2019-04-24 08:41:36 +01:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
2016-06-06 01:46:06 +01:00
buildGoPackage rec {
2016-06-06 01:46:06 +01:00
name = "ipfs-${version}";
2019-04-24 08:41:36 +01:00
version = "0.4.20";
2017-10-02 19:35:45 +01:00
rev = "v${version}";
2016-06-06 01:46:06 +01:00
goPackagePath = "github.com/ipfs/go-ipfs";
2019-04-24 08:41:36 +01:00
goDeps = ./deps.nix;
2016-10-29 04:19:41 +01:00
2016-06-06 01:46:06 +01:00
src = fetchFromGitHub {
owner = "ipfs";
repo = "go-ipfs";
inherit rev;
2019-04-24 08:41:36 +01:00
sha256 = "1xnjn4pcgknywfndrp2zwln3v1msaffhhfiym5mdz543rsxav0yp";
2016-06-06 01:46:06 +01:00
};
meta = with stdenv.lib; {
description = "A global, versioned, peer-to-peer filesystem";
2016-10-29 04:19:41 +01:00
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
};
}