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

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

24 lines
614 B
Nix
Raw Normal View History

2022-10-10 03:37:01 +01:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2018-06-22 14:16:01 +01:00
stdenv.mkDerivation rec {
pname = "libcpuid";
2022-10-23 20:21:06 +01:00
version = "0.6.1";
2017-06-20 06:51:34 +01:00
src = fetchFromGitHub {
owner = "anrieff";
repo = "libcpuid";
rev = "v${version}";
2022-10-23 20:21:06 +01:00
sha256 = "sha256-KxG06a56XPa34IJGAJbBeHUKkCEba+R7HOSosTCwQKU=";
};
2018-06-22 14:16:01 +01:00
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
homepage = "http://libcpuid.sourceforge.net/";
2018-06-22 14:16:01 +01:00
description = "A small C library for x86 CPU detection and feature extraction";
license = licenses.bsd2;
maintainers = with maintainers; [ orivej artuuge ];
2018-08-28 09:00:21 +01:00
platforms = platforms.x86;
};
}