mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
50 lines
1.2 KiB
Nix
50 lines
1.2 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 ];
|
|
buildInputs = [ autoconf automake 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"];
|
|
|
|
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;
|
|
};
|
|
}
|