1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

iasl: Bump

svn path=/nixpkgs/trunk/; revision=33056
This commit is contained in:
Shea Levy 2012-03-14 00:53:52 +00:00
parent afd3664d9f
commit 27bedda4f6

View file

@ -1,14 +1,14 @@
{stdenv, fetchurl, bison, flex}:
stdenv.mkDerivation {
name = "iasl-20090123";
name = "iasl-20120215";
src = fetchurl {
url = http://www.acpica.org/download/acpica-unix-20090123.tar.gz;
md5 = "4ca6484acbf16cf67fd4ba91d32fd0a0";
url = http://www.acpica.org/download/acpica-unix-20120215.tar.gz;
sha256 = "13avirbqdnp7whl6ji8ixkhzdwf1cadl5fg8ggzbxp99bx0rgd5j";
};
buildPhase = "
cd compiler
cd source/compiler
make
cd ..
";