summary refs log tree commit diff
path: root/pkgs/applications/blockchains/cgminer/default.nix
blob: 48a8d3ad9302221a2e4f3c23ae0ff4a38d0ecc93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{ 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
  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;
  };
}