2010-11-11 23:00:57 +01:00
|
|
|
{stdenv, fetchgit, kernel, ...}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
src = fetchgit {
|
|
|
|
url="git://github.com/mkottman/acpi_call.git";
|
|
|
|
rev="4f71ce83392bc52b3497";
|
|
|
|
sha256="1f20516dc7d42bc7d9d71eaa54f48f38cd56b8683062f81d6f3857990056bdd3";
|
|
|
|
};
|
|
|
|
name = "acpi-call";
|
|
|
|
|
|
|
|
preBuild = ''
|
2010-11-12 07:12:04 +01:00
|
|
|
kernelVersion=$(cd ${kernel}/lib/modules && ls)
|
2010-11-11 23:00:57 +01:00
|
|
|
sed -e 's/break/true/' -i test_off.sh
|
|
|
|
sed -e 's@/bin/bash@.bin/sh@' -i test_off.sh
|
2010-11-12 07:12:04 +01:00
|
|
|
sed -e "s@/lib/modules/\$(.*)@${kernel}/lib/modules/$kernelVersion@" -i Makefile
|
2010-11-11 23:00:57 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
kernelVersion=$(cd ${kernel}/lib/modules && ls)
|
|
|
|
ensureDir $out/lib/modules/$kernelVersion/misc
|
|
|
|
cp acpi_call.ko $out/lib/modules/$kernelVersion/misc
|
|
|
|
ensureDir $out/bin
|
2010-11-11 23:02:19 +01:00
|
|
|
cp test_off.sh $out/bin/test_discrete_video_off.sh
|
2010-11-11 23:00:57 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
description = "A module allowing arbitrary ACPI calls; use case: hybrid video";
|
|
|
|
};
|
|
|
|
}
|