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

21 lines
569 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl}:
2017-03-24 01:59:22 +00:00
stdenv.mkDerivation rec {
name = "915resolution-0.5.3";
2018-08-19 08:21:30 +00:00
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/";
meta = with lib; {
homepage = "http://915resolution.mango-lang.org/";
2017-03-24 01:59:22 +00:00
description = "A tool to modify Intel 800/900 video BIOS";
platforms = [ "i686-linux" "x86_64-linux" ];
2018-08-19 08:21:30 +00:00
license = licenses.publicDomain;
};
}