Adding Intel ACPI Compiler (trying to build virtualbox)
svn path=/nixpkgs/trunk/; revision=13845
This commit is contained in:
parent
e44ec52b45
commit
fb1fd1115f
27
pkgs/development/compilers/iasl/default.nix
Normal file
27
pkgs/development/compilers/iasl/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{stdenv, fetchurl, bison, flex}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "iasl-20090123.tar.gz";
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://www.acpica.org/download/acpica-unix-20090123.tar.gz;
|
||||||
|
md5 = "4ca6484acbf16cf67fd4ba91d32fd0a0";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildPhase = "
|
||||||
|
cd compiler
|
||||||
|
make
|
||||||
|
cd ..
|
||||||
|
";
|
||||||
|
|
||||||
|
installPhase = "
|
||||||
|
install -d $out/bin
|
||||||
|
install compiler/iasl $out/bin
|
||||||
|
";
|
||||||
|
|
||||||
|
buildInputs = [ bison flex ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Intel ACPI Compiler";
|
||||||
|
homepage = http://www.acpica.org/;
|
||||||
|
};
|
||||||
|
}
|
@ -494,6 +494,10 @@ let
|
|||||||
inherit fetchurl stdenv bison flex pam ssmtp;
|
inherit fetchurl stdenv bison flex pam ssmtp;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
iasl = import ../development/compilers/iasl {
|
||||||
|
inherit fetchurl stdenv bison flex;
|
||||||
|
};
|
||||||
|
|
||||||
avahi =
|
avahi =
|
||||||
let qt4Support = getConfig [ "avahi" "qt4Support" ] false;
|
let qt4Support = getConfig [ "avahi" "qt4Support" ] false;
|
||||||
in
|
in
|
||||||
|
Loading…
x
Reference in New Issue
Block a user