artiq/nix/pkgs/llvmlite.nix

26 lines
836 B
Nix
Raw Normal View History

2018-11-16 15:14:20 +08:00
{ stdenv, fetchFromGitHub, llvm-or1k, makeWrapper, python3, ncurses, zlib, python3Packages }:
stdenv.mkDerivation rec {
2019-01-21 23:55:25 +08:00
name = "llvmlite";
2018-11-16 15:14:20 +08:00
src = fetchFromGitHub {
2018-12-22 14:01:52 +08:00
rev = "1d167be4eec5d6c32498952be8b3ac17dd30df8d";
2018-11-16 15:14:20 +08:00
owner = "m-labs";
repo = "llvmlite";
2018-12-22 14:01:52 +08:00
sha256 = "0ranbjhcz2v3crmdbw1sxdwqwqbbm7dd53d8qaqb69ma9fkxy8x7";
};
buildInputs = [ makeWrapper python3 ncurses zlib llvm-or1k python3Packages.setuptools ];
installPhase = ''
LLVM_CONFIG=${llvm-or1k}/bin/llvm-config
python3 setup.py install --prefix=$out
'';
2019-01-22 15:06:13 +08:00
meta = with stdenv.lib; {
description = "A lightweight LLVM python binding for writing JIT compilers";
homepage = "http://llvmlite.pydata.org/";
#maintainers = with maintainers; [ sb0 ];
license = licenses.bsd2;
platforms = platforms.unix;
};
}