summary refs log tree commit diff
path: root/pkgs/os-specific/linux/915resolution/default.nix
blob: 57f8ba0d33b325a0a2e3a0f373b7f24af150c1b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{lib, stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "915resolution-0.5.3";

  src = fetchurl {
    url = "http://915resolution.mango-lang.org/${name}.tar.gz";
    sha256 = "0hmmy4kkz3x6yigz6hk99416ybznd67dpjaxap50nhay9f1snk5n";
  };

  patchPhase = "rm *.o";
  installPhase = "mkdir -p $out/sbin; cp 915resolution $out/sbin/";

  meta = with lib; {
    homepage = "http://915resolution.mango-lang.org/";
    description = "A tool to modify Intel 800/900 video BIOS";
    platforms = [ "i686-linux" "x86_64-linux" ];
    license = licenses.publicDomain;
  };
}