bbswitch: maintain, fix (transient?) hash failure

This commit is contained in:
Nikolay Amiantov 2015-04-06 02:56:53 +03:00
parent 5c2dbf9827
commit 7626674ae0
1 changed files with 5 additions and 3 deletions

View File

@ -17,7 +17,7 @@ stdenv.mkDerivation {
patches = [ (fetchpatch { patches = [ (fetchpatch {
url = "https://github.com/Bumblebee-Project/bbswitch/pull/102.patch"; url = "https://github.com/Bumblebee-Project/bbswitch/pull/102.patch";
sha256 = "0agq7w28pdarq18qxc9917mamyb2sq8hxl3pzc0v210h60vmx2pm"; sha256 = "1lbr6pyyby4k9rn2ry5qc38kc738d0442jhhq57vmdjb6hxjya7m";
}) ]; }) ];
preBuild = '' preBuild = ''
@ -44,8 +44,10 @@ stdenv.mkDerivation {
chmod +x $out/bin/discrete_vga_poweroff $out/bin/discrete_vga_poweron chmod +x $out/bin/discrete_vga_poweroff $out/bin/discrete_vga_poweron
''; '';
meta = { meta = with stdenv.lib; {
platforms = stdenv.lib.platforms.linux;
description = "A module for powering off hybrid GPUs"; description = "A module for powering off hybrid GPUs";
platforms = platforms.linux;
homepage = https://github.com/Bumblebee-Project/bbswitch;
maintainers = with maintainers; [ abbradar ];
}; };
} }