37 lines
796 B
Nix
37 lines
796 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
|
|
, qtbase
|
|
, qmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "radeon-profile-daemon";
|
|
version = "20190603.g06qxq2h";
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
buildInputs = [ qtbase ];
|
|
|
|
src = (
|
|
fetchFromGitHub {
|
|
owner = "marazmista";
|
|
repo = "radeon-profile-daemon";
|
|
rev = version;
|
|
sha256 = "06qxq2hv3l9shna8x5d9awbdm9pbwlc6vckcr63kf37rrs8ykk0j";
|
|
}
|
|
) + "/radeon-profile-daemon";
|
|
|
|
preConfigure = ''
|
|
substituteInPlace radeon-profile-daemon.pro \
|
|
--replace "/usr/" "$out/"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "System daemon for reading current clocks of AMD Radeon cards";
|
|
homepage = "https://github.com/marazmista/radeon-profile-daemon";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|