summary refs log tree commit diff
path: root/pkgs/tools/system/vbetool/default.nix
blob: 06ae286266249a2881b82ca527c79525c5badc5e (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
{ 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 stdenv.lib; {
    description = "Video BIOS execution tool";
    homepage = http://www.codon.org.uk/~mjg59/vbetool/;
    maintainers = [ maintainers.raskin ];
    platforms = platforms.linux;
    license = licenses.gpl2;
  };
}