nixpkgs/pkgs/development/compilers/iasl/default.nix
Mateusz Kowalczyk 007f80c1d0 Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me.

Relevant: issue #2999, issue #739
2014-11-06 00:48:16 +00:00

29 lines
579 B
Nix

{stdenv, fetchurl, bison, flex}:
stdenv.mkDerivation {
name = "iasl-20130117";
src = fetchurl {
url = http://www.acpica.org/download/acpica-unix-20130117.tar.gz;
sha256 = "1zils7l7gnkbbl8916dlhvij1g625ryb7769zhzffn3flshfdivh";
};
NIX_CFLAGS_COMPILE = "-O3";
buildFlags = "iasl";
buildInputs = [ bison flex ];
installPhase =
''
install -d $out/bin
install generate/unix/bin*/iasl $out/bin
'';
meta = {
description = "Intel ACPI Compiler";
homepage = http://www.acpica.org/;
license = stdenv.lib.licenses.iasl;
};
}