about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/acpi-call
diff options
context:
space:
mode:
authorArie Middelkoop <amiddelk@gmail.com>2012-02-24 00:17:09 +0000
committerArie Middelkoop <amiddelk@gmail.com>2012-02-24 00:17:09 +0000
commited813f3955595ffd594570f74f406f3b6319610a (patch)
tree2f7dcd966845189319b53c2f84ef442c26d6710f /pkgs/os-specific/linux/acpi-call
parent70d56e06383cfa6eb547ce7f1882bfcd95b1e813 (diff)
Let 'bbswitch' and 'acpi-call' use the attribute kernel.version instead of a nasty 'ls' to determine the kernel version.
svn path=/nixpkgs/trunk/; revision=32531
Diffstat (limited to 'pkgs/os-specific/linux/acpi-call')
-rw-r--r--pkgs/os-specific/linux/acpi-call/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/acpi-call/default.nix b/pkgs/os-specific/linux/acpi-call/default.nix
index d7c9e2c3695e3..f9615da0c2f69 100644
--- a/pkgs/os-specific/linux/acpi-call/default.nix
+++ b/pkgs/os-specific/linux/acpi-call/default.nix
@@ -10,16 +10,14 @@ stdenv.mkDerivation {
   };
   
   preBuild = ''
-    kernelVersion=$(cd ${kernel}/lib/modules && ls)
     sed -e 's/break/true/' -i test_off.sh
     sed -e 's@/bin/bash@.bin/sh@' -i test_off.sh
-    sed -e "s@/lib/modules/\$(.*)@${kernel}/lib/modules/$kernelVersion@" -i Makefile
+    sed -e "s@/lib/modules/\$(.*)@${kernel}/lib/modules/${kernel.version}@" -i Makefile
   '';
  
   installPhase = ''
-    kernelVersion=$(cd ${kernel}/lib/modules && ls)
-    ensureDir $out/lib/modules/$kernelVersion/misc
-    cp acpi_call.ko $out/lib/modules/$kernelVersion/misc
+    ensureDir $out/lib/modules/${kernel.version}/misc
+    cp acpi_call.ko $out/lib/modules/${kernel.version}/misc
     ensureDir $out/bin
     cp test_off.sh $out/bin/test_discrete_video_off.sh
   '';