nixpkgs/pkgs/os-specific/linux/915resolution/default.nix

20 lines
518 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
2017-03-24 01:59:22 +00:00
stdenv.mkDerivation rec {
name = "915resolution-0.5.3";
src = fetchurl {
2017-03-24 01:59:22 +00:00
url = "http://915resolution.mango-lang.org/${name}.tar.gz";
sha256 = "0hmmy4kkz3x6yigz6hk99416ybznd67dpjaxap50nhay9f1snk5n";
};
2017-03-24 01:59:22 +00:00
patchPhase = "rm *.o";
installPhase = "mkdir -p $out/sbin; cp 915resolution $out/sbin/";
2017-03-24 01:59:22 +00:00
meta = with stdenv.lib; {
homepage = http://915resolution.mango-lang.org/;
description = "A tool to modify Intel 800/900 video BIOS";
platforms = platforms.linux;
};
}