Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / by-name / li / libcpuid / package.nix
blob56df13aabd2afef1e76ed2d11b03cdf45d29a104
1 { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "libcpuid";
5   version = "0.6.4";
7   src = fetchFromGitHub {
8     owner = "anrieff";
9     repo = "libcpuid";
10     rev = "v${version}";
11     sha256 = "sha256-Zs5GKvSasdfLqo8oErDQNAuXRG27Bm9vNwyooqbol0Q=";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   meta = with lib; {
17     homepage = "https://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   };