2021-12-02 10:22:44 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook }:
|
2018-06-22 14:16:01 +01:00
|
|
|
|
2016-06-28 07:41:24 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libcpuid";
|
2021-03-22 10:50:19 +00:00
|
|
|
version = "0.5.1";
|
2016-06-28 07:41:24 +01:00
|
|
|
|
2017-06-20 06:51:34 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "anrieff";
|
|
|
|
repo = "libcpuid";
|
|
|
|
rev = "v${version}";
|
2021-03-22 10:50:19 +00:00
|
|
|
sha256 = "sha256-m10LdtwBk1Lx31AJ4HixEYaCkT7EHpF9+tOV1rSA6VU=";
|
2016-06-28 07:41:24 +01:00
|
|
|
};
|
|
|
|
|
2018-06-22 14:16:01 +01:00
|
|
|
patches = [
|
|
|
|
# Work around https://github.com/anrieff/libcpuid/pull/102.
|
|
|
|
./stdint.patch
|
2021-12-02 10:22:44 +00:00
|
|
|
# Fixes cross-compilation to NetBSD, remove me for libcpuid > 0.5.1
|
|
|
|
(fetchpatch {
|
|
|
|
name = "use-popcount-from-libc.patch";
|
|
|
|
url = "https://github.com/anrieff/libcpuid/commit/1acaf9980b55ae180cc08db218b9face28202519.patch";
|
|
|
|
sha256 = "0lvsv9baq0sria1f1ncn1b2783js29lfs5fv8milp54pg1wd5b7q";
|
|
|
|
})
|
2016-06-28 07:41:24 +01:00
|
|
|
];
|
|
|
|
|
2018-06-22 14:16:01 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://libcpuid.sourceforge.net/";
|
2018-06-22 14:16:01 +01:00
|
|
|
description = "A small C library for x86 CPU detection and feature extraction";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ orivej artuuge ];
|
2018-08-28 09:00:21 +01:00
|
|
|
platforms = platforms.x86;
|
2016-06-28 07:41:24 +01:00
|
|
|
};
|
|
|
|
}
|