From 484e9f9635eac84c0f7d240959256b14ecc60cfb Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 12 Apr 2019 18:08:46 +0800 Subject: [PATCH] llvmlite-artiq: NixOS 19.03 compatibility --- artiq/pkgs/llvmlite-artiq.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/artiq/pkgs/llvmlite-artiq.nix b/artiq/pkgs/llvmlite-artiq.nix index 4e8cb39..73d9fec 100644 --- a/artiq/pkgs/llvmlite-artiq.nix +++ b/artiq/pkgs/llvmlite-artiq.nix @@ -10,10 +10,7 @@ python3Packages.buildPythonPackage rec { buildInputs = [ makeWrapper python3 ncurses zlib llvm-or1k python3Packages.setuptools ]; - installPhase = '' - LLVM_CONFIG=${llvm-or1k}/bin/llvm-config - python3 setup.py install --prefix=$out - ''; + buildPhase = "LLVM_CONFIG=${llvm-or1k}/bin/llvm-config python3 setup.py install --prefix=$out"; meta = with stdenv.lib; { description = "A lightweight LLVM python binding for writing JIT compilers";