about summary refs log tree commit diff
path: root/pkgs/tools/system/vbetool/default.nix
blob: 8cc7b338ca96aa439f58989e5b41e7168fd30f97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, fetchurl, pciutils, libx86, zlib }:

stdenv.mkDerivation rec {
  pname = "vbetool";
  version = "1.1";

  src = fetchurl {
    url = "https://www.codon.org.uk/~mjg59/vbetool/download/${pname}-${version}.tar.gz";
    sha256 = "0m7rc9v8nz6w9x4x96maza139kin6lg4hscy6i13fna4672ds9jd";
  };

  buildInputs = [ pciutils libx86 zlib ];

  patchPhase = ''
    substituteInPlace Makefile.in --replace '$(libdir)/libpci.a' ""
  '';

  configureFlags = [ "LDFLAGS=-lpci" ];

  meta = with lib; {
    description = "Video BIOS execution tool";
    homepage = "https://www.codon.org.uk/~mjg59/vbetool/";
    maintainers = [ maintainers.raskin ];
    platforms = platforms.linux;
    license = licenses.gpl2;
    mainProgram = "vbetool";
  };
}