My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/os-specific/linux/915resolution/default.nix

21 lines
602 B

{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 = "A tool to modify Intel 800/900 video BIOS";
platforms = [ "i686-linux" "x86_64-linux" ];
license = licenses.publicDomain;
};
}