mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 06:13:54 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
23 lines
637 B
Nix
23 lines
637 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 = "A tool to modify Intel 800/900 video BIOS";
|
|
mainProgram = "915resolution";
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
license = licenses.publicDomain;
|
|
};
|
|
}
|