nixpkgs/pkgs/applications/misc/cpu-x/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, gtk3, ncurses
2022-08-29 10:18:32 +02:00
, libcpuid, pciutils, procps, wrapGAppsHook, nasm, makeWrapper
, opencl-headers, ocl-icd
, vulkan-headers, vulkan-loader, glfw
, libXdmcp, pcre, util-linux
, libselinux, libsepol
, libthai, libdatrie, libxkbcommon, libepoxy
, dbus, at-spi2-core
, libXtst
}:
2020-05-01 10:45:00 +02:00
# Known issues:
# - The daemon can't be started from the GUI, because pkexec requires a shell
# registered in /etc/shells. The nix's bash is not in there when running
# cpu-x from nixpkgs.
2020-05-01 10:45:00 +02:00
stdenv.mkDerivation rec {
pname = "cpu-x";
2023-04-17 03:26:12 +02:00
version = "4.5.3";
2020-05-01 10:45:00 +02:00
src = fetchFromGitHub {
owner = "X0rg";
repo = "CPU-X";
rev = "v${version}";
2023-04-17 03:26:12 +02:00
sha256 = "sha256-o48NkOPabfnwsu+nyXJOstW6g0JSUgIrEFx1nNCR7XE=";
2020-05-01 10:45:00 +02:00
};
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook nasm makeWrapper ];
2020-05-01 10:45:00 +02:00
buildInputs = [
2020-05-18 11:11:11 +02:00
gtk3 ncurses libcpuid pciutils procps
2022-08-29 10:18:32 +02:00
vulkan-headers vulkan-loader glfw
opencl-headers ocl-icd
libXdmcp pcre util-linux
libselinux libsepol
libthai libdatrie libxkbcommon libepoxy
dbus at-spi2-core
libXtst
2020-05-01 10:45:00 +02:00
];
2020-05-18 11:11:11 +02:00
postInstall = ''
wrapProgram $out/bin/cpu-x \
2022-08-29 10:18:32 +02:00
--prefix PATH : ${lib.makeBinPath [ stdenv.cc ]} \
--prefix LD_LIBRARY_PATH : ${vulkan-loader}/lib
2020-05-18 11:11:11 +02:00
'';
meta = with lib; {
2020-05-01 10:45:00 +02:00
description = "Free software that gathers information on CPU, motherboard and more";
homepage = "https://thetumultuousunicornofdarkness.github.io/CPU-X";
2022-08-29 10:18:32 +02:00
license = licenses.gpl3Plus;
2020-05-01 10:45:00 +02:00
platforms = [ "x86_64-linux" ];
2022-08-29 10:18:32 +02:00
maintainers = with maintainers; [ viraptor ];
2020-05-01 10:45:00 +02:00
};
}