mirror of https://github.com/m-labs/artiq.git
21 lines
601 B
Nix
21 lines
601 B
Nix
{ stdenv, fetchgit, llvm-or1k, makeWrapper, python3, ncurses, zlib, python3Packages }:
|
|
let
|
|
version = "0f4ebae";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "llvmlite-${version}";
|
|
src = fetchgit {
|
|
url = "https://github.com/m-labs/llvmlite";
|
|
rev = "401dfb713166bdd2bc0d3ab2b7ebf12e7a434130";
|
|
sha256 = "1ci1pnpspv1pqz712yix1nmplq7568vpsr6gzzl3a33w9s0sw2nq";
|
|
leaveDotGit = true;
|
|
};
|
|
|
|
buildInputs = [ makeWrapper python3 ncurses zlib llvm-or1k python3Packages.setuptools ];
|
|
|
|
installPhase = ''
|
|
LLVM_CONFIG=${llvm-or1k}/bin/llvm-config
|
|
python3 setup.py install --prefix=$out
|
|
'';
|
|
}
|