radeon-profile: init at 20161221

This commit is contained in:
rnhmjoj 2017-03-26 19:13:09 +02:00
parent 5c7f4669a7
commit 9b1b22fcb6
No known key found for this signature in database
GPG key ID: 362BB82B7E496B7C
2 changed files with 33 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -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 { };