1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/compilers/iasl/default.nix
R. RyanTM 11d0ae3632 iasl: 20180313 -> 20180629 (#46272)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
iasl
2018-09-18 19:16:37 +02:00

31 lines
664 B
Nix

{stdenv, fetchurl, bison, flex}:
stdenv.mkDerivation rec {
name = "iasl-${version}";
version = "20180629";
src = fetchurl {
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
sha256 = "0kwssazw7pqgxvxj41q5r0g83bqqk64f2lrpnfjn9p6v58zizlbh";
};
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;
platforms = stdenv.lib.platforms.linux;
};
}