2023-05-15 05:48:01 +01: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";
|
2023-10-17 04:24:33 +01:00
|
|
|
version = "0.6.4";
|
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}";
|
2023-10-17 04:24:33 +01:00
|
|
|
sha256 = "sha256-Zs5GKvSasdfLqo8oErDQNAuXRG27Bm9vNwyooqbol0Q=";
|
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; {
|
2023-01-21 21:41:12 +00:00
|
|
|
homepage = "https://libcpuid.sourceforge.net/";
|
2018-06-22 14:16:01 +01:00
|
|
|
description = "A small C library for x86 CPU detection and feature extraction";
|
2022-10-31 14:00:32 +00:00
|
|
|
changelog = "https://raw.githubusercontent.com/anrieff/libcpuid/master/ChangeLog";
|
2018-06-22 14:16:01 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|