Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pkgs/tools/misc/ethminer/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@

stdenv.mkDerivation rec {
pname = "ethminer";
version = "0.19.0";
version = "0.20.0";

src =
fetchFromGitHub {
owner = "ethereum-mining";
repo = "ethminer";
rev = "v${version}";
sha256 = "1kyff3vx2r4hjpqah9qk99z6dwz7nsnbnhhl6a76mdhjmgp1q646";
rev = "e55fbdc2f985b852de61c1b541eb1570ad69dbf0"; # https://github.com/ethereum-mining/ethminer/pull/2377; FIXME change once upstream releases
sha256 = "sha256-ugKMuoBqEztCrOltNK+VXTKZjgwjyHr6pLn+xenhCDA=";
fetchSubmodules = true;
};

Expand Down Expand Up @@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
];

preConfigure = ''
sed -i 's/_lib_static//' libpoolprotocols/CMakeLists.txt
substituteInPlace libpoolprotocols/CMakeLists.txt --replace _static ""
'';

postInstall = ''
Expand Down