nixpkgs/pkgs/tools/misc/libcpuid/default.nix
R. RyanTM 091fbe9409 libcpuid: 0.4.0 -> 0.4.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libcpuid/versions
2019-03-10 11:47:10 -07:00

29 lines
728 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "libcpuid-${version}";
version = "0.4.1";
src = fetchFromGitHub {
owner = "anrieff";
repo = "libcpuid";
rev = "v${version}";
sha256 = "03sya0fs76g86syl299lrn0vqjjcf8i0xd7fzaf42qhizbx03b88";
};
patches = [
# Work around https://github.com/anrieff/libcpuid/pull/102.
./stdint.patch
];
nativeBuildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
homepage = http://libcpuid.sourceforge.net/;
description = "A small C library for x86 CPU detection and feature extraction";
license = licenses.bsd2;
maintainers = with maintainers; [ orivej artuuge ];
platforms = platforms.x86;
};
}