* Until the modesetting branch of the i810 driver works, we're still
stuck with 915resolution on laptops with broken BIOSes. svn path=/nixpkgs/trunk/; revision=8222
This commit is contained in:
parent
7b7230b0e9
commit
4a85e66bd3
11
pkgs/os-specific/linux/915resolution/default.nix
Normal file
11
pkgs/os-specific/linux/915resolution/default.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "915resolution-0.5.2";
|
||||
src = fetchurl {
|
||||
url = http://www.geocities.com/stomljen/915resolution-0.5.2.tar.gz;
|
||||
sha256 = "1m5nfzgwaglqabpm2l2mjqvigz1z0dj87cmj2pjbbzxmmpapv0lq";
|
||||
};
|
||||
buildPhase = "rm *.o 915resolution; make";
|
||||
installPhase = "ensureDir $out/sbin; cp 915resolution $out/sbin/";
|
||||
}
|
@ -2089,6 +2089,10 @@ rec {
|
||||
### OS-SPECIFIC
|
||||
|
||||
|
||||
_915resolution = import ../os-specific/linux/915resolution {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
#nfsUtils = import ../os-specific/linux/nfs-utils {
|
||||
# inherit fetchurl stdenv;
|
||||
#};
|
||||
|
Loading…
Reference in New Issue
Block a user