seth: 0.5.6 -> 0.6.2
This commit is contained in:
parent
95783a0380
commit
608eaeaeab
@ -1,22 +1,24 @@
|
|||||||
{ stdenv, makeWrapper, lib, fetchFromGitHub
|
{ stdenv, makeWrapper, lib, fetchFromGitHub
|
||||||
, bc, coreutils, curl, ethabi, git, gnused, jshon, perl, solc, which }:
|
, bc, coreutils, curl, ethabi, git, gnused, jshon, perl, solc, which
|
||||||
|
, nodejs, ethsign
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "seth-${version}";
|
name = "seth-${version}";
|
||||||
version = "0.5.6";
|
version = "0.6.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dapphub";
|
owner = "dapphub";
|
||||||
repo = "seth";
|
repo = "seth";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1zl70xy7njjwy4k4g84v7lpf9a2nnnbxh4mkpw7jzqfs2mr636z6";
|
sha256 = "1lbr7i3rznfp3h03y7pc094r0m992lbzr926rnr0xxbyp755wvm4";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [makeWrapper];
|
nativeBuildInputs = [makeWrapper];
|
||||||
buildPhase = "true";
|
buildPhase = "true";
|
||||||
makeFlags = ["prefix=$(out)"];
|
makeFlags = ["prefix=$(out)"];
|
||||||
postInstall = let path = lib.makeBinPath [
|
postInstall = let path = lib.makeBinPath [
|
||||||
bc coreutils curl ethabi git gnused jshon perl solc which
|
bc coreutils curl ethabi git gnused jshon perl solc which nodejs ethsign
|
||||||
]; in ''
|
]; in ''
|
||||||
wrapProgram "$out/bin/seth" --prefix PATH : "${path}"
|
wrapProgram "$out/bin/seth" --prefix PATH : "${path}"
|
||||||
'';
|
'';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user