mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
seth: 0.5.1 -> 0.5.6
This commit is contained in:
parent
8210d86041
commit
de6ec55911
@ -1,22 +1,22 @@
|
|||||||
{ stdenv, makeWrapper, lib, fetchFromGitHub
|
{ stdenv, makeWrapper, lib, fetchFromGitHub
|
||||||
, bc, coreutils, curl, ethabi, git, gnused, jshon, solc, which }:
|
, bc, coreutils, curl, ethabi, git, gnused, jshon, perl, solc, which }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "seth-${version}";
|
name = "seth-${version}";
|
||||||
version = "0.5.1";
|
version = "0.5.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dapphub";
|
owner = "dapphub";
|
||||||
repo = "seth";
|
repo = "seth";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1qph1gldj24r8l6aswb1w133lrm8zsxmmxl4krjik0a73bm4ghdm";
|
sha256 = "1zl70xy7njjwy4k4g84v7lpf9a2nnnbxh4mkpw7jzqfs2mr636z6";
|
||||||
};
|
};
|
||||||
|
|
||||||
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 solc which
|
bc coreutils curl ethabi git gnused jshon perl solc which
|
||||||
]; in ''
|
]; in ''
|
||||||
wrapProgram "$out/bin/seth" --prefix PATH : "${path}"
|
wrapProgram "$out/bin/seth" --prefix PATH : "${path}"
|
||||||
'';
|
'';
|
||||||
|
Loading…
Reference in New Issue
Block a user