init: holochain-go at 0.1.0-alpha
Holochain is a platform for creating an unenclosable carrier upon which highly-scalable dApps and smart contracts can be built. This is the holochain team's initial implimentation in go. A rust version is under development.
This commit is contained in:
parent
d12e7b8d17
commit
9a9539df65
|
@ -1494,7 +1494,7 @@
|
||||||
name = "Jim Garrison";
|
name = "Jim Garrison";
|
||||||
};
|
};
|
||||||
gavin = {
|
gavin = {
|
||||||
email = "gavin@praxeology.co.uk";
|
email = "gavin.rogers@holo.host";
|
||||||
github = "gavinrogers";
|
github = "gavinrogers";
|
||||||
name = "Gavin Rogers";
|
name = "Gavin Rogers";
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
|
||||||
|
{ stdenv, buildGoPackage, fetchgit }:
|
||||||
|
|
||||||
|
buildGoPackage rec {
|
||||||
|
name = "holochain-go${version}";
|
||||||
|
version = "v0.1.0-alpha";
|
||||||
|
rev = "a17510b910a7a377441c152b8dccdbae1999f63f";
|
||||||
|
|
||||||
|
goPackagePath = "github.com/holochain/holochain-proto";
|
||||||
|
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
inherit rev;
|
||||||
|
url = "https://github.com/holochain/holochain-proto";
|
||||||
|
sha256 = "19l29jnr63ximmyn4i4llv2mdwh306c2mpzmx2anj9z12wjpach0";
|
||||||
|
};
|
||||||
|
|
||||||
|
goDeps = ./deps.nix;
|
||||||
|
|
||||||
|
# TODO: add metadata https://nixos.org/nixpkgs/manual/#sec-standard-meta-attributes
|
||||||
|
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;
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -3016,6 +3016,8 @@ with pkgs;
|
||||||
inherit (llvmPackages_38) stdenv;
|
inherit (llvmPackages_38) stdenv;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
holochain-go = callPackage ../servers/holochain-go { };
|
||||||
|
|
||||||
homesick = callPackage ../tools/misc/homesick { };
|
homesick = callPackage ../tools/misc/homesick { };
|
||||||
|
|
||||||
honcho = callPackage ../tools/system/honcho { };
|
honcho = callPackage ../tools/system/honcho { };
|
||||||
|
|
Loading…
Reference in New Issue