Merge pull request #24359 from rnhmjoj/radeon-profile

radeon-profile: init at 20161221
This commit is contained in:
Benno Fünfstück 2017-04-24 11:28:35 +02:00 committed by GitHub
commit 30a9923f4c
2 changed files with 33 additions and 0 deletions

@ -0,0 +1,31 @@
{ stdenv, fetchFromGitHub, qtbase, qmakeHook, makeQtWrapper, libXrandr }:
stdenv.mkDerivation rec {
name = "radeon-profile-${version}";
version = "20161221";
nativeBuildInputs = [ qmakeHook makeQtWrapper ];
buildInputs = [ qtbase libXrandr ];
src = (fetchFromGitHub {
owner = "marazmista";
repo = "radeon-profile";
rev = version;
sha256 = "0zdmpc0rx6i0y32dcbz02whp95hpbmmbkmcp39f00byvjm5cprgg";
}) + "/radeon-profile";
postInstall = ''
mkdir -p $out/bin
cp ./radeon-profile $out/bin/radeon-profile
wrapQtProgram $out/bin/radeon-profile
'';
meta = with stdenv.lib; {
description = "Application to read current clocks of AMD Radeon cards";
homepage = https://github.com/marazmista/radeon-profile;
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}

@ -3690,6 +3690,8 @@ with pkgs;
radarr = callPackage ../servers/radarr { };
radeon-profile = libsForQt5.callPackage ../tools/misc/radeon-profile { };
radvd = callPackage ../tools/networking/radvd { };
rambox = callPackage ../applications/networking/instant-messengers/rambox { };