mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
58 lines
1.6 KiB
Nix
58 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";
|
|
mainProgram = "cgminer";
|
|
homepage = "https://github.com/ckolivas/cgminer";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ offline mmahut ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|