* 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:
Eelco Dolstra 2007-03-06 00:12:43 +00:00
parent 7b7230b0e9
commit 4a85e66bd3
2 changed files with 15 additions and 0 deletions

View 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/";
}

View File

@ -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;
#};