depot/third_party/nixpkgs/pkgs/os-specific/linux/915resolution/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

22 lines
635 B
Nix

{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
pname = "915resolution";
version = "0.5.3";
src = fetchurl {
url = "http://915resolution.mango-lang.org/915resolution-${version}.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 = "Tool to modify Intel 800/900 video BIOS";
mainProgram = "915resolution";
platforms = [ "i686-linux" "x86_64-linux" ];
license = licenses.publicDomain;
};
}