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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
602 B
Nix
Raw Normal View History

{lib, stdenv, fetchurl}:
2017-03-24 01:59:22 +00:00
stdenv.mkDerivation rec {
pname = "915resolution";
version = "0.5.3";
2018-08-19 09:21:30 +01:00
src = fetchurl {
url = "http://915resolution.mango-lang.org/915resolution-${version}.tar.gz";
2017-03-24 01:59:22 +00:00
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 09:21:30 +01:00
license = licenses.publicDomain;
};
}