mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
f9fdf2d402
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
57 lines
1.6 KiB
Nix
57 lines
1.6 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libtool
|
|
, autoconf
|
|
, automake
|
|
, curl
|
|
, ncurses
|
|
, ocl-icd
|
|
, opencl-headers
|
|
, libusb1
|
|
, xorg
|
|
, jansson }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cgminer";
|
|
version = "4.11.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ckolivas";
|
|
repo = "cgminer";
|
|
rev = "v${version}";
|
|
sha256 = "0l1ms3nxnjzh4mpiadikvngcr9k3jnjqy3yna207za0va0c28dj5";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config autoconf automake ];
|
|
buildInputs = [ libtool curl ncurses ocl-icd opencl-headers
|
|
xorg.libX11 xorg.libXext xorg.libXinerama jansson libusb1 ];
|
|
|
|
configureScript = "./autogen.sh";
|
|
configureFlags = [ "--enable-scrypt"
|
|
"--enable-opencl"
|
|
"--enable-bitforce"
|
|
"--enable-icarus"
|
|
"--enable-modminer"
|
|
"--enable-ztex"
|
|
"--enable-avalon"
|
|
"--enable-klondike"
|
|
"--enable-keccak"
|
|
"--enable-bflsc"];
|
|
|
|
# Workaround build failure on -fno-common toolchains like upstream
|
|
# gcc-10. Otherwise build fails as:
|
|
# ld: cgminer-driver-modminer.o:/build/source/miner.h:285:
|
|
# multiple definition of `bitforce_drv'; cgminer-cgminer.o:/build/source/miner.h:285:
|
|
# first defined here
|
|
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
|
|
|
meta = with lib; {
|
|
description = "CPU/GPU miner in c for bitcoin";
|
|
homepage = "https://github.com/ckolivas/cgminer";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ offline mmahut ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|