Merge pull request #68220 from jonringer/bump-radeontool

radeontool: 1.5 -> 1.6.3
This commit is contained in:
Jörg Thalheim 2019-09-24 03:40:22 +01:00 committed by GitHub
commit 43c6c753ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,33 +1,25 @@
{ stdenv, fetchurl, pciutils }:
{ stdenv, fetchurl
, autoreconfHook
, pciutils
, pkgconfig
, xorg
}:
stdenv.mkDerivation {
name = "radeontool-1.5";
inherit pciutils;
# Don't know wether it's a good idea to hardcode the lspci path..
# But it will work on nix..
postUnpack = ''
cd $sourceRoot
sed -i "s%lspci%$pciutils/sbin/lspci%g" radeontool.c
cd ..
'';
stdenv.mkDerivation rec {
pname = "radeontool";
version = "1.6.3";
src = fetchurl {
url = http://fdd.com/software/radeon/radeontool-1.5.tar.gz;
sha256 = "0qbkawhhq0y0gqbbql7q04y0v0hims5c4jkjsbc1y03rf9kr10ar";
url = "https://people.freedesktop.org/~airlied/radeontool/${pname}-${version}.tar.gz";
sha256 = "0mjk9wr9rsb17yy92j6yi16hfpa6v5r1dbyiy60zp4r125wr63za";
};
installPhase = ''
mkdir -p $out/bin
chmod +x lightwatch.pl
cp radeontool lightwatch.pl $out/bin
'';
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ xorg.libpciaccess ];
meta = {
description = "Control the backlight and external video output of ATI Radeon Mobility graphics cards";
homepage = http://fdd.com/software/radeon/;
license = stdenv.lib.licenses.zlib;
broken = true;
meta = with stdenv.lib; {
description = "Lowlevel tools to tweak register and dump state on radeon GPUs";
homepage = "https://airlied.livejournal.com/";
license = licenses.zlib;
};
}