summary refs log tree commit diff
path: root/pkgs/applications/altcoins/go-ethereum-classic/default.nix
blob: 37d6264d82f3e88f220b8e594941d31706ab565c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:

buildGoPackage rec {
  name = "go-ethereum-classic-${version}";
  version = "3.5.86";

  goPackagePath = "github.com/ethereumproject/go-ethereum";
  subPackages = [ "cmd/evm" "cmd/geth" ];

  src = fetchgit {
    rev = "v${version}";
    url = "https://github.com/ethereumproject/go-ethereum";
    sha256 = "1k59hl3qvx4422zqlp259566fnxq5bs67jhm0v6a1zfr1k8iqzwh";
  };

  goDeps = ./deps.nix;

  meta = {
    description = "Golang implementation of Ethereum Classic";
    homepage = https://github.com/ethereumproject/go-ethereum;
    license = with lib.licenses; [ lgpl3 gpl3 ];
    maintainers = with lib.maintainers; [ sorpaas ];
  };
}