python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / libcpuid / default.nix
blob83f42dabebe0bfa1d7b5a3baf7879700e3323b7a
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "libcpuid";
5   version = "0.6.1";
7   src = fetchFromGitHub {
8     owner = "anrieff";
9     repo = "libcpuid";
10     rev = "v${version}";
11     sha256 = "sha256-KxG06a56XPa34IJGAJbBeHUKkCEba+R7HOSosTCwQKU=";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   meta = with lib; {
17     homepage = "http://libcpuid.sourceforge.net/";
18     description = "A small C library for x86 CPU detection and feature extraction";
19     changelog = "https://raw.githubusercontent.com/anrieff/libcpuid/master/ChangeLog";
20     license = licenses.bsd2;
21     maintainers = with maintainers; [ orivej artuuge ];
22     platforms = platforms.x86;
23   };