nixpkgs/pkgs/tools/system/vbetool/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

27 lines
685 B
Nix

{ stdenv, fetchurl, pciutils, libx86, zlib }:
stdenv.mkDerivation rec {
name = "vbetool-${version}";
version = "1.1";
src = fetchurl {
url = "https://www.codon.org.uk/~mjg59/vbetool/download/${name}.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;
};
}