about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/iasl/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/compilers/iasl/default.nix')
-rw-r--r--nixpkgs/pkgs/development/compilers/iasl/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/nixpkgs/pkgs/development/compilers/iasl/default.nix b/nixpkgs/pkgs/development/compilers/iasl/default.nix
deleted file mode 100644
index fb6bd41344ad..000000000000
--- a/nixpkgs/pkgs/development/compilers/iasl/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{lib, stdenv, fetchurl, fetchpatch, bison, flex}:
-
-stdenv.mkDerivation rec {
-  pname = "iasl";
-  version = "20200110";
-
-  src = fetchurl {
-    url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
-    sha256 = "1cb6aa6acrixmdzvj9vv4qs9lmlsbkd27pjlz14i1kq1x3xn0gwx";
-  };
-
-  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 = lib.licenses.iasl;
-    platforms = lib.platforms.unix;
-  };
-}