Skip to content

Commit 727ec21

Browse files
sorpaasqknight
authored andcommittedJun 13, 2017
go-ethereum-classic: init at 3.5.0 (#26551)
thanks
1 parent 5c8192c commit 727ec21

File tree

3 files changed

+64
-0
lines changed

3 files changed

+64
-0
lines changed
 

Diff for: ‎pkgs/applications/altcoins/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ rec {
2121

2222
freicoin = callPackage ./freicoin.nix { boost = pkgs.boost155; };
2323
go-ethereum = callPackage ./go-ethereum.nix { };
24+
go-ethereum-classic = callPackage ./go-ethereum-classic { };
2425

2526
hivemind = callPackage ./hivemind.nix { withGui = true; };
2627
hivemindd = callPackage ./hivemind.nix { withGui = false; };
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
2+
3+
buildGoPackage rec {
4+
name = "go-ethereum-classic-${version}";
5+
version = "3.5.0";
6+
rev = "402c1700fbefb9512e444b32fe12c2d674638ddb";
7+
8+
goPackagePath = "github.com/ethereumproject/go-ethereum";
9+
subPackages = [ "cmd/evm" "cmd/geth" ];
10+
11+
src = fetchgit {
12+
inherit rev;
13+
url = "https://github.com/ethereumproject/go-ethereum";
14+
sha256 = "15wji12wqcrgsb1glwwz4jv7rsas71bbxh7750iv2phn7jivm0fi";
15+
};
16+
17+
goDeps = ./deps.nix;
18+
19+
meta = {
20+
description = "Golang implementation of Ethereum Classic";
21+
homepage = "https://github.com/ethereumproject/go-ethereum";
22+
license = with lib.licenses; [ lgpl3 gpl3 ];
23+
};
24+
}
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# This file was generated by https://github.com/kamilchm/go2nix v1.2.0
2+
[
3+
{
4+
goPackagePath = "github.com/maruel/panicparse";
5+
fetch = {
6+
type = "git";
7+
url = "https://github.com/maruel/panicparse";
8+
rev = "ae43f192cef2add653fe1481a3070ed00a4a6981";
9+
sha256 = "11q8v4adbrazqvh24235s5nifck0d1083gbwv4dh5lhd10xlwdvr";
10+
};
11+
}
12+
{
13+
goPackagePath = "github.com/mattn/go-runewidth";
14+
fetch = {
15+
type = "git";
16+
url = "https://github.com/mattn/go-runewidth";
17+
rev = "97311d9f7767e3d6f422ea06661bc2c7a19e8a5d";
18+
sha256 = "0dxlrzn570xl7gb11hjy1v4p3gw3r41yvqhrffgw95ha3q9p50cg";
19+
};
20+
}
21+
{
22+
goPackagePath = "github.com/mitchellh/go-wordwrap";
23+
fetch = {
24+
type = "git";
25+
url = "https://github.com/mitchellh/go-wordwrap";
26+
rev = "ad45545899c7b13c020ea92b2072220eefad42b8";
27+
sha256 = "0ny1ddngvwfj3njn7pmqnf3l903lw73ynddw15x8ymp7hidv27v9";
28+
};
29+
}
30+
{
31+
goPackagePath = "github.com/nsf/termbox-go";
32+
fetch = {
33+
type = "git";
34+
url = "https://github.com/nsf/termbox-go";
35+
rev = "4163cd39dda1c0dda883a713640bc01e08951c24";
36+
sha256 = "1vzrhxf8823lrnwf1bfyxwlm52pph5iq2hgr1d0n07v8kjgqkrmx";
37+
};
38+
}
39+
]

0 commit comments

Comments
 (0)
Please sign in to comment.