core/pkgs/by-name/li/libcpuid/default.nix

28 lines
758 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "libcpuid";
version = "0.6.5";
src = fetchFromGitHub {
owner = "anrieff";
repo = "libcpuid";
rev = "v${version}";
sha256 = "sha256-Bq16UH4IUR7dU57bGHKq8P6JsjaB4arOJ4zFeNyxXSg=";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
homepage = "https://libcpuid.sourceforge.net/";
2024-05-13 21:24:10 +00:00
description =
"A small C library for x86 CPU detection and feature extraction";
2024-05-02 00:46:19 +00:00
mainProgram = "cpuid_tool";
2024-05-13 21:24:10 +00:00
changelog =
"https://raw.githubusercontent.com/anrieff/libcpuid/master/ChangeLog";
2024-05-02 00:46:19 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ orivej artuuge ];
platforms = platforms.x86;
};
}