mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
Merge pull request #15376 from chris-martin/go-ethereum
go-ethereum: init at 1.4.1
This commit is contained in:
commit
1da836af70
|
@ -745,6 +745,22 @@ let
|
|||
sha256 = "1rmm1ky7irqypqjkk6qcd2n0xkzpaggdxql9dp9i9qci5rvvwwd4";
|
||||
};
|
||||
|
||||
ethereum = buildFromGitHub rec {
|
||||
name = "ethereum";
|
||||
rev = "v1.4.1";
|
||||
goPackagePath = "github.com/ethereum/go-ethereum";
|
||||
owner = "ethereum";
|
||||
repo = "go-ethereum";
|
||||
sha256 = "0z6yzkk72g41dzqa52fizxqxqh349y1m9s3byfh9ixq5xy5fnjn3";
|
||||
preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace";
|
||||
postBuild = "rm $NIX_BUILD_TOP/go/bin/*test";
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://ethereum.github.io/go-ethereum/";
|
||||
description = "Official golang implementation of the Ethereum protocol";
|
||||
license = with licenses; [ lgpl3 gpl3 ];
|
||||
};
|
||||
};
|
||||
|
||||
exercism = buildFromGitHub {
|
||||
rev = "v2.2.1";
|
||||
name = "exercism";
|
||||
|
|
Loading…
Reference in a new issue