mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
radeon-profile: init at 20161221
This commit is contained in:
parent
5c7f4669a7
commit
9b1b22fcb6
2 changed files with 33 additions and 0 deletions
31
pkgs/tools/misc/radeon-profile/default.nix
Normal file
31
pkgs/tools/misc/radeon-profile/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -3690,6 +3690,8 @@ with pkgs;
|
||||||
|
|
||||||
radarr = callPackage ../servers/radarr { };
|
radarr = callPackage ../servers/radarr { };
|
||||||
|
|
||||||
|
radeon-profile = libsForQt5.callPackage ../tools/misc/radeon-profile { };
|
||||||
|
|
||||||
radvd = callPackage ../tools/networking/radvd { };
|
radvd = callPackage ../tools/networking/radvd { };
|
||||||
|
|
||||||
rambox = callPackage ../applications/networking/instant-messengers/rambox { };
|
rambox = callPackage ../applications/networking/instant-messengers/rambox { };
|
||||||
|
|
Loading…
Reference in a new issue