Merge pull request #55422 from nand0p/ethminer

ethminer: init at 0.18.0-rc.0
This commit is contained in:
Silvan Mosberger
2019-05-02 01:29:09 +02:00
committed by GitHub
7 changed files with 281 additions and 7 deletions

View File

@@ -0,0 +1,35 @@
{ stdenv, fetchFromGitHub, cmake, gtest, python, boost }:
stdenv.mkDerivation rec {
pname = "cli11";
version = "1.7.1";
src = fetchFromGitHub {
owner = "CLIUtils";
repo = "CLI11";
rev = "v${version}";
sha256 = "0wddck970pczk7c201i2g6s85mkv4f2f4zxy6mndh3pfz41wcs2d";
};
nativeBuildInputs = [ cmake ];
checkInputs = [ boost python ];
doCheck = true;
preConfigure = ''
rm -rfv extern/googletest
ln -sfv ${gtest.src} extern/googletest
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "CLI11 is a command line parser for C++11";
homepage = https://github.com/CLIUtils/CLI11;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ nand0p ];
license = licenses.unfreeRedistributable;
};
}