summary refs log tree commit diff
path: root/pkgs/applications/altcoins
diff options
context:
space:
mode:
authoradisbladis <adis@blad.is>2018-01-16 02:52:41 +0800
committeradisbladis <adis@blad.is>2018-01-16 09:39:33 +0800
commit608eaeaeab10593a3f661e9e1012286febbaeb45 (patch)
tree431e30f54323a536b536b7637ec508c39b1759fb /pkgs/applications/altcoins
parent95783a0380c2945e8c768dde64284d93cb945e8e (diff)
downloadnixlib-608eaeaeab10593a3f661e9e1012286febbaeb45.tar
nixlib-608eaeaeab10593a3f661e9e1012286febbaeb45.tar.gz
nixlib-608eaeaeab10593a3f661e9e1012286febbaeb45.tar.bz2
nixlib-608eaeaeab10593a3f661e9e1012286febbaeb45.tar.lz
nixlib-608eaeaeab10593a3f661e9e1012286febbaeb45.tar.xz
nixlib-608eaeaeab10593a3f661e9e1012286febbaeb45.tar.zst
nixlib-608eaeaeab10593a3f661e9e1012286febbaeb45.zip
seth: 0.5.6 -> 0.6.2
Diffstat (limited to 'pkgs/applications/altcoins')
-rw-r--r--pkgs/applications/altcoins/seth.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/applications/altcoins/seth.nix b/pkgs/applications/altcoins/seth.nix
index b2f5cfdea067..40fbf2ceb6a7 100644
--- a/pkgs/applications/altcoins/seth.nix
+++ b/pkgs/applications/altcoins/seth.nix
@@ -1,22 +1,24 @@
 { 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 {
   name = "seth-${version}";
-  version = "0.5.6";
+  version = "0.6.2";
 
   src = fetchFromGitHub {
     owner = "dapphub";
     repo = "seth";
     rev = "v${version}";
-    sha256 = "1zl70xy7njjwy4k4g84v7lpf9a2nnnbxh4mkpw7jzqfs2mr636z6";
+    sha256 = "1lbr7i3rznfp3h03y7pc094r0m992lbzr926rnr0xxbyp755wvm4";
   };
 
   nativeBuildInputs = [makeWrapper];
   buildPhase = "true";
   makeFlags = ["prefix=$(out)"];
   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 ''
     wrapProgram "$out/bin/seth" --prefix PATH : "${path}"
   '';