Merge pull request #42937 from gavinrogers/init_holochain

holochain-go: init at 0.1.0-alpha
This commit is contained in:
Eelco Dolstra 2018-07-11 17:46:30 +02:00 committed by GitHub
commit c93123afb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1088 additions and 1 deletions

View File

@ -1406,7 +1406,7 @@
name = "Jim Garrison";
};
gavin = {
email = "gavin@praxeology.co.uk";
email = "gavin.rogers@holo.host";
github = "gavinrogers";
name = "Gavin Rogers";
};

View File

@ -0,0 +1,29 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "holochain-go${version}";
version = "0.1.0-alpha";
rev = "a17510b910a7a377441c152b8dccdbae1999f63f";
goPackagePath = "github.com/holochain/holochain-proto";
src = fetchFromGitHub {
inherit rev;
owner = "holochain";
repo = "holochain-proto";
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 ];
};
}

1056
pkgs/servers/holochain-go/deps.nix generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -3026,6 +3026,8 @@ with pkgs;
inherit (llvmPackages_38) stdenv;
});
holochain-go = callPackage ../servers/holochain-go { };
homesick = callPackage ../tools/misc/homesick { };
honcho = callPackage ../tools/system/honcho { };