nixpkgs/pkgs/by-name/cp/cpuminer/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

46 lines
1.0 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, curl
, jansson
, perl
, autoreconfHook
}:
stdenv.mkDerivation rec {
pname = "cpuminer";
version = "2.5.1";
src = fetchFromGitHub {
owner = "pooler";
repo = pname;
rev = "v${version}";
sha256 = "0f44i0z8rid20c2hiyp92xq0q0mjj537r05sa6vdbc0nl0a5q40i";
};
patches = [
(fetchpatch {
name = "fix-build-on-aarch64.patch";
url = "https://github.com/pooler/cpuminer/commit/5f02105940edb61144c09a7eb960bba04a10d5b7.patch";
hash = "sha256-lGAcwDcXgcJBFhasSEdQIEIY7pp6x/PEXHBsVwAOqhc=";
})
];
postPatch = if stdenv.cc.isClang then "${perl}/bin/perl ./nomacro.pl" else null;
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ curl jansson ];
configureFlags = [ "CFLAGS=-O3" ];
meta = with lib; {
homepage = "https://github.com/pooler/cpuminer";
description = "CPU miner for Litecoin and Bitcoin";
license = licenses.gpl2Plus;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
mainProgram = "minerd";
};
}