* 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

+15
+11
pkgs/os-specific/linux/915resolution/default.nix
··· 1 + {stdenv, fetchurl}: 2 + 3 + stdenv.mkDerivation { 4 + name = "915resolution-0.5.2"; 5 + src = fetchurl { 6 + url = http://www.geocities.com/stomljen/915resolution-0.5.2.tar.gz; 7 + sha256 = "1m5nfzgwaglqabpm2l2mjqvigz1z0dj87cmj2pjbbzxmmpapv0lq"; 8 + }; 9 + buildPhase = "rm *.o 915resolution; make"; 10 + installPhase = "ensureDir $out/sbin; cp 915resolution $out/sbin/"; 11 + }
+4
pkgs/top-level/all-packages.nix
··· 2089 2089 ### OS-SPECIFIC 2090 2090 2091 2091 2092 + _915resolution = import ../os-specific/linux/915resolution { 2093 + inherit fetchurl stdenv; 2094 + }; 2095 + 2092 2096 #nfsUtils = import ../os-specific/linux/nfs-utils { 2093 2097 # inherit fetchurl stdenv; 2094 2098 #};