nix-scripts/artiq-fast/pkgs/llvmlite-artiq.nix

24 lines
833 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, llvm-or1k, makeWrapper, python3, ncurses, zlib, python3Packages }:
python3Packages.buildPythonPackage rec {
pname = "llvmlite-artiq";
2020-06-10 11:53:43 +08:00
version = "0.23.0.dev";
src = fetchFromGitHub {
2019-04-12 18:32:07 +08:00
rev = "158f9d3a898dbf055ca513d69505df288c681fea";
owner = "m-labs";
repo = "llvmlite";
2019-04-12 18:32:07 +08:00
sha256 = "1anniwya5jhhr2sxfdnwrsjy17yrk3x61i9hsm1rljsb8zvh68d5";
};
buildInputs = [ makeWrapper python3 ncurses zlib llvm-or1k python3Packages.setuptools ];
2019-04-12 18:17:55 +08:00
preBuild = "export LLVM_CONFIG=${llvm-or1k}/bin/llvm-config";
meta = with stdenv.lib; {
description = "A lightweight LLVM python binding for writing JIT compilers";
homepage = "http://llvmlite.pydata.org/";
2019-04-12 19:05:24 +08:00
maintainers = with maintainers; [ sb0 ];
license = licenses.bsd2;
platforms = platforms.unix;
};
}