nixpkgs/pkgs/applications/altcoins/go-ethereum-classic/default.nix

25 lines
664 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchgit }:
buildGoPackage rec {
pname = "go-ethereum-classic";
2017-10-13 06:02:24 +00:00
version = "4.0.0";
goPackagePath = "github.com/ethereumproject/go-ethereum";
subPackages = [ "cmd/evm" "cmd/geth" ];
src = fetchgit {
2017-08-29 11:26:34 +00:00
rev = "v${version}";
url = "https://github.com/ethereumproject/go-ethereum";
2017-10-13 06:02:24 +00:00
sha256 = "06f1w7s45q4zva1xjrx92xinsdrixl0m6zhx5hvdjmg3xqcbwr79";
};
goDeps = ./deps.nix;
meta = {
description = "Golang implementation of Ethereum Classic";
homepage = https://github.com/ethereumproject/go-ethereum;
license = with lib.licenses; [ lgpl3 gpl3 ];
2017-08-29 11:26:34 +00:00
maintainers = with lib.maintainers; [ sorpaas ];
};
}