2018-06-27 15:45:16 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchgit }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "holochain-go${version}";
|
2018-06-28 23:28:53 +01:00
|
|
|
version = "0.1.0-alpha";
|
2018-06-27 15:45:16 +01:00
|
|
|
rev = "a17510b910a7a377441c152b8dccdbae1999f63f";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/holochain/holochain-proto";
|
|
|
|
|
|
|
|
|
2018-06-28 23:28:53 +01:00
|
|
|
src = fetchFromGithub {
|
2018-06-27 15:45:16 +01:00
|
|
|
inherit rev;
|
2018-06-28 23:28:53 +01:00
|
|
|
owner = "holochain";
|
|
|
|
repo = "holochain-proto";
|
2018-06-27 15:45:16 +01:00
|
|
|
sha256 = "19l29jnr63ximmyn4i4llv2mdwh306c2mpzmx2anj9z12wjpach0";
|
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "core implementation of validating DHT dApps in go";
|
|
|
|
longDescription = "Holographic storage for distributed applications -- a validating monotonic DHT backed by authoritative hashchains for data provenance";
|
|
|
|
homepage = "https://holochain.org/";
|
|
|
|
downloadpage = "https://developer.holochain.org/";
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ gavin ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|