mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
33 lines
885 B
Nix
33 lines
885 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, gtk3, ncurses
|
|
, libcpuid, pciutils, procps, wrapGAppsHook, nasm, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cpu-x";
|
|
version = "4.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "X0rg";
|
|
repo = "CPU-X";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-LWIcE86o+uU8G9DtumiH6iTqHhvq4y/QyQX7J3FhKEc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook nasm makeWrapper ];
|
|
buildInputs = [
|
|
gtk3 ncurses libcpuid pciutils procps
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/cpu-x \
|
|
--prefix PATH : ${lib.makeBinPath [ stdenv.cc ]}
|
|
'';
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|