nixpkgs/pkgs/os-specific/linux/915resolution/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
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.
2024-03-19 03:14:51 +01:00

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;
};
}