mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
31 lines
765 B
Nix
31 lines
765 B
Nix
{ stdenv, fetchFromGitHub, qtbase, qmake, libXrandr }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "radeon-profile-${version}";
|
|
version = "20161221";
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
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
|
|
'';
|
|
|
|
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;
|
|
};
|
|
|
|
}
|