nixpkgs/pkgs/tools/misc/libcpuid/default.nix

29 lines
717 B
Nix
Raw Normal View History

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