nixpkgs-suyu/pkgs/tools/misc/radeon-profile/default.nix

33 lines
793 B
Nix
Raw Normal View History

2019-09-22 15:58:42 +02:00
{ lib, mkDerivation, fetchFromGitHub
, qtbase, qtcharts, qmake, libXrandr, libdrm
}:
2017-03-26 19:13:09 +02:00
2019-09-22 15:58:42 +02:00
mkDerivation rec {
2017-03-26 19:13:09 +02:00
pname = "radeon-profile";
2019-09-22 16:11:30 +02:00
version = "20190903";
2017-03-26 19:13:09 +02:00
2017-05-17 21:26:11 +02:00
nativeBuildInputs = [ qmake ];
2017-11-05 14:34:48 +01:00
buildInputs = [ qtbase qtcharts libXrandr libdrm ];
2017-03-26 19:13:09 +02:00
src = (fetchFromGitHub {
owner = "marazmista";
repo = "radeon-profile";
rev = version;
2019-09-22 16:11:30 +02:00
sha256 = "0ax5417q03xjwi3pn7yyjdb90ssaygdprfgb1pz9nkyk6773ckx5";
2017-03-26 19:13:09 +02:00
}) + "/radeon-profile";
2019-09-22 16:11:30 +02:00
preConfigure = ''
substituteInPlace radeon-profile.pro \
--replace "/usr/" "$out/"
2017-03-26 19:13:09 +02:00
'';
2019-09-22 15:58:42 +02:00
meta = with lib; {
2017-03-26 19:13:09 +02:00
description = "Application to read current clocks of AMD Radeon cards";
homepage = https://github.com/marazmista/radeon-profile;
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}