2015-12-30 14:41:17 +00:00
|
|
|
{ stdenv, fetchurl, pciutils, libx86, zlib }:
|
2009-10-24 19:58:07 +00:00
|
|
|
|
2015-12-30 14:41:17 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "vbetool-${version}";
|
|
|
|
version = "1.1";
|
2009-10-24 19:58:07 +00:00
|
|
|
|
2015-12-30 14:41:17 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.codon.org.uk/~mjg59/vbetool/download/${name}.tar.gz";
|
|
|
|
sha256 = "0m7rc9v8nz6w9x4x96maza139kin6lg4hscy6i13fna4672ds9jd";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pciutils libx86 zlib ];
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace Makefile.in --replace '$(libdir)/libpci.a' ""
|
|
|
|
'';
|
2009-10-24 19:58:07 +00:00
|
|
|
|
2015-12-30 14:41:17 +00:00
|
|
|
configureFlags = [ "LDFLAGS=-lpci" ];
|
2015-09-15 04:27:19 +00:00
|
|
|
|
2015-12-30 14:41:17 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-10-24 19:58:07 +00:00
|
|
|
description = "Video BIOS execution tool";
|
2015-12-30 14:41:17 +00:00
|
|
|
homepage = http://www.codon.org.uk/~mjg59/vbetool/;
|
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
2009-10-24 19:58:07 +00:00
|
|
|
};
|
|
|
|
}
|