Unverified Commit 9a157947 authored by K900's avatar K900 Committed by GitHub
Browse files

libcpuid: enable building on ARM (#515294)

parents abdbd266 cd9b05e2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -25,12 +25,12 @@ stdenv.mkDerivation (finalAttrs: {

  meta = {
    homepage = "https://libcpuid.sourceforge.net/";
    description = "Small C library for x86 CPU detection and feature extraction";
    description = "Small C library for CPU detection and feature extraction";
    mainProgram = "cpuid_tool";
    changelog = "https://raw.githubusercontent.com/anrieff/libcpuid/master/ChangeLog";
    license = lib.licenses.bsd2;
    maintainers = [
    ];
    platforms = lib.platforms.x86;
    platforms = lib.platforms.x86 ++ lib.platforms.arm ++ lib.platforms.aarch64;
  };
})