mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
commit
8c9e7a7c7e
2 changed files with 29 additions and 0 deletions
27
pkgs/applications/misc/cpu-x/default.nix
Normal file
27
pkgs/applications/misc/cpu-x/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -173,6 +173,8 @@ in
|
|||
|
||||
colorz = callPackage ../tools/misc/colorz { };
|
||||
|
||||
cpu-x = callPackage ../applications/misc/cpu-x { };
|
||||
|
||||
dhallToNix = callPackage ../build-support/dhall-to-nix.nix {
|
||||
inherit dhall-nix;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue