2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2018-06-22 06:16:01 -07:00
|
|
|
|
2016-06-27 23:41:24 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libcpuid";
|
2021-03-22 03:50:19 -07:00
|
|
|
version = "0.5.1";
|
2016-06-27 23:41:24 -07:00
|
|
|
|
2017-06-19 22:51:34 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "anrieff";
|
|
|
|
repo = "libcpuid";
|
|
|
|
rev = "v${version}";
|
2021-03-22 03:50:19 -07:00
|
|
|
sha256 = "sha256-m10LdtwBk1Lx31AJ4HixEYaCkT7EHpF9+tOV1rSA6VU=";
|
2016-06-27 23:41:24 -07:00
|
|
|
};
|
|
|
|
|
2018-06-22 06:16:01 -07:00
|
|
|
patches = [
|
|
|
|
# Work around https://github.com/anrieff/libcpuid/pull/102.
|
|
|
|
./stdint.patch
|
2016-06-27 23:41:24 -07:00
|
|
|
];
|
|
|
|
|
2018-06-22 06:16:01 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://libcpuid.sourceforge.net/";
|
2018-06-22 06:16:01 -07:00
|
|
|
description = "A small C library for x86 CPU detection and feature extraction";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ orivej artuuge ];
|
2018-08-28 01:00:21 -07:00
|
|
|
platforms = platforms.x86;
|
2016-06-27 23:41:24 -07:00
|
|
|
};
|
|
|
|
}
|