Adding vbetool

svn path=/nixpkgs/trunk/; revision=17952
This commit is contained in:
Michael Raskin
2009-10-24 19:58:07 +00:00
parent 2bdf38dab2
commit e618a80968
8 changed files with 114 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
a :
let
s = import ./src-for-default.nix;
buildInputs = with a; [
libx86 pciutils zlib
];
in
rec {
src = a.fetchUrlFromSrcInfo s;
inherit (s) name;
inherit buildInputs;
configureFlags = [];
/* doConfigure should be removed if not needed */
phaseNames = ["fixPCIref" "doConfigure" "doMakeInstall"];
fixPCIref = a.fullDepEntry (''
sed -e 's@$(libdir)/libpci.a@${a.pciutils}/lib/libpci.so@' -i Makefile.in
export NIX_LDFLAGS="$NIX_LDFLAGS -lpci"
'') ["doUnpack" "minInit"];
meta = {
description = "Video BIOS execution tool";
maintainers = [
a.lib.maintainers.raskin
];
platforms = with a.lib.platforms;
linux;
};
}

View File

@@ -0,0 +1,9 @@
rec {
version="1.1";
name="vbetool-1.1";
hash="0m7rc9v8nz6w9x4x96maza139kin6lg4hscy6i13fna4672ds9jd";
url="http://www.codon.org.uk/~mjg59/vbetool/download/vbetool-${version}.tar.gz";
advertisedUrl="http://www.codon.org.uk/~mjg59/vbetool/download/vbetool-1.1.tar.gz";
}

View File

@@ -0,0 +1,4 @@
{
downloadPage = "http://www.codon.org.uk/~mjg59/vbetool/download/?C=M;O=D";
baseName = "vbetool";
}