4a85e66bd3
stuck with 915resolution on laptops with broken BIOSes. svn path=/nixpkgs/trunk/; revision=8222
12 lines
356 B
Nix
12 lines
356 B
Nix
{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/";
|
|
}
|