about summary refs log tree commit diff
path: root/pkgs/applications/misc/cpu-x/default.nix
blob: c058e6d5a983ffc8bc4ad248122563a65b72c2a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gtk3, ncurses, curl
, json_c, libcpuid, pciutils, procps, wrapGAppsHook, nasm }:

stdenv.mkDerivation rec {
  pname = "cpu-x";
  version = "3.2.4";

  src = fetchFromGitHub {
    owner = "X0rg";
    repo = "CPU-X";
    rev = "v${version}";
    sha256 = "03y49wh9v7x6brmavj5a2clihn0z4f01pypl7m8ymarv4y3a6xkl";
  };

  nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook nasm ];
  buildInputs = [
    gtk3 ncurses curl json_c libcpuid pciutils procps
  ];

  meta = with stdenv.lib; {
    description = "Free software that gathers information on CPU, motherboard and more";
    homepage = src.meta.homepage;
    license = licenses.gpl3;
    platforms = [ "x86_64-linux" ];
    maintainers = with maintainers; [ gnidorah ];
  };
}