2010-07-28 11:55:54 +00:00
|
|
|
{ stdenv, fetchurl, pciutils }:
|
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
stdenv.mkDerivation {
|
2007-09-03 12:10:57 +00:00
|
|
|
name = "radeontool-1.5";
|
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
inherit pciutils;
|
2007-09-03 12:10:57 +00:00
|
|
|
|
|
|
|
# Don't know wether it's a good idea to hardcode the lspci path..
|
|
|
|
# But it will work on nix..
|
2010-07-28 11:55:54 +00:00
|
|
|
postUnpack = ''
|
|
|
|
cd $sourceRoot
|
|
|
|
sed -i "s%lspci%$pciutils/sbin/lspci%g" radeontool.c
|
2007-09-03 12:10:57 +00:00
|
|
|
cd ..
|
2010-07-28 11:55:54 +00:00
|
|
|
'';
|
2007-09-03 12:10:57 +00:00
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
src = fetchurl {
|
2007-09-03 12:10:57 +00:00
|
|
|
url = http://fdd.com/software/radeon/radeontool-1.5.tar.gz;
|
|
|
|
sha256 = "0qbkawhhq0y0gqbbql7q04y0v0hims5c4jkjsbc1y03rf9kr10ar";
|
|
|
|
};
|
|
|
|
|
2010-07-28 11:55:54 +00:00
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/bin
|
2007-09-03 12:10:57 +00:00
|
|
|
chmod +x lightwatch.pl
|
2010-07-28 11:55:54 +00:00
|
|
|
cp radeontool lightwatch.pl $out/bin
|
|
|
|
'';
|
2007-09-03 12:10:57 +00:00
|
|
|
|
2014-07-28 09:43:20 +00:00
|
|
|
meta = {
|
2010-07-28 11:55:54 +00:00
|
|
|
description = "Control the backlight and external video output of ATI Radeon Mobility graphics cards";
|
|
|
|
homepage = http://fdd.com/software/radeon/;
|
2014-07-28 09:43:20 +00:00
|
|
|
license = stdenv.lib.licenses.zlib;
|
2017-03-02 00:27:43 +00:00
|
|
|
broken = true;
|
2010-07-28 11:55:54 +00:00
|
|
|
};
|
2007-09-03 12:10:57 +00:00
|
|
|
}
|