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