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

29 lines
728 B
Nix
Raw Normal View History

2018-06-22 13:16:01 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "libcpuid-${version}";
2017-06-20 05:51:34 +00:00
version = "0.4.0";
2017-06-20 05:51:34 +00:00
src = fetchFromGitHub {
owner = "anrieff";
repo = "libcpuid";
rev = "v${version}";
sha256 = "136kv6m666f7s18mim0vdbzqvs4s0wvixa12brj9p3kmfbx48bw7";
};
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 stdenv.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 ];
platforms = platforms.all;
};
}