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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook }:
2018-06-22 13:16:01 +00:00
stdenv.mkDerivation rec {
pname = "libcpuid";
2023-04-09 21:36:34 +00:00
version = "0.6.3";
2017-06-20 05:51:34 +00:00
src = fetchFromGitHub {
owner = "anrieff";
repo = "libcpuid";
rev = "v${version}";
2023-04-09 21:36:34 +00:00
sha256 = "sha256-lhoHqdS5tke462guORg+PURjVmjAgviT5KJHp6PyvUA=";
};
patches = [
# Fixes cross-compilation to NetBSD
# https://github.com/anrieff/libcpuid/pull/190
(fetchpatch {
name = "pass-pthread-to-linker.patch";
url = "https://github.com/anrieff/libcpuid/commit/c28436e7239f28dab0e2a3bcdbce95f41e1363b1.patch";
sha256 = "sha256-J2mB010JcE4si0rERjcrL9kJgbWHKaQCIZPDkmRvcq4=";
})
];
2018-06-22 13:16:01 +00:00
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
homepage = "https://libcpuid.sourceforge.net/";
2018-06-22 13:16:01 +00: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 13:16:01 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ orivej artuuge ];
2018-08-28 08:00:21 +00:00
platforms = platforms.x86;
};
}