mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
seth: init at 0.5.0
This commit is contained in:
parent
8f86f9a4eb
commit
ff3baddbd5
@ -36,6 +36,7 @@ rec {
|
|||||||
|
|
||||||
ethabi = callPackage ./ethabi.nix { };
|
ethabi = callPackage ./ethabi.nix { };
|
||||||
ethrun = callPackage ./ethrun.nix { };
|
ethrun = callPackage ./ethrun.nix { };
|
||||||
|
seth = callPackage ./seth.nix { };
|
||||||
|
|
||||||
primecoin = callPackage ./primecoin.nix { withGui = true; };
|
primecoin = callPackage ./primecoin.nix { withGui = true; };
|
||||||
primecoind = callPackage ./primecoin.nix { withGui = false; };
|
primecoind = callPackage ./primecoin.nix { withGui = false; };
|
||||||
|
31
pkgs/applications/altcoins/seth.nix
Normal file
31
pkgs/applications/altcoins/seth.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv, makeWrapper, lib, fetchFromGitHub
|
||||||
|
, bc, coreutils, curl, ethabi, git, gnused, jshon, solc, which }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "seth-${version}";
|
||||||
|
version = "0.5.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dapphub";
|
||||||
|
repo = "seth";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0bgygvilhbabb0y9pv9cn8cx7cj513w9is4vh6v69h2czknrjmgz";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [makeWrapper];
|
||||||
|
buildPhase = "true";
|
||||||
|
makeFlags = ["prefix=$(out)"];
|
||||||
|
postInstall = let path = lib.makeBinPath [
|
||||||
|
bc coreutils curl ethabi git gnused jshon solc which
|
||||||
|
]; in ''
|
||||||
|
wrapProgram "$out/bin/seth" --prefix PATH : "${path}"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Command-line client for talking to Ethereum nodes";
|
||||||
|
homepage = https://github.com/dapphub/seth/;
|
||||||
|
maintainers = [stdenv.lib.maintainers.dbrock];
|
||||||
|
license = lib.licenses.gpl3;
|
||||||
|
inherit version;
|
||||||
|
};
|
||||||
|
}
|
@ -13062,6 +13062,7 @@ with pkgs;
|
|||||||
go-ethereum = self.altcoins.go-ethereum;
|
go-ethereum = self.altcoins.go-ethereum;
|
||||||
ethabi = self.altcoins.ethabi;
|
ethabi = self.altcoins.ethabi;
|
||||||
ethrun = self.altcoins.ethrun;
|
ethrun = self.altcoins.ethrun;
|
||||||
|
seth = self.altcoins.seth;
|
||||||
|
|
||||||
stellar-core = self.altcoins.stellar-core;
|
stellar-core = self.altcoins.stellar-core;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user