forked from M-Labs/artiq
1
0
Fork 0
artiq/nix/llvmlite.nix

21 lines
588 B
Nix
Raw Normal View History

2018-11-16 15:14:20 +08:00
{ stdenv, fetchFromGitHub, llvm-or1k, makeWrapper, python3, ncurses, zlib, python3Packages }:
let
version = "0f4ebae";
in
stdenv.mkDerivation rec {
name = "llvmlite-${version}";
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
'';
}