3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/compilers/spirv-llvm-translator/default.nix

41 lines
965 B
Nix
Raw Normal View History

{ lib, stdenv
2019-07-27 12:48:07 +01:00
, fetchFromGitHub
, cmake
2021-05-09 00:08:50 +01:00
, pkg-config
2019-07-27 12:48:07 +01:00
, lit
, llvm_11
2019-07-27 12:48:07 +01:00
}:
stdenv.mkDerivation rec {
pname = "SPIRV-LLVM-Translator";
version = "unstable-2021-06-13";
2019-07-27 12:48:07 +01:00
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "SPIRV-LLVM-Translator";
rev = "c67e6f26a7285aa753598ef792593ac4a545adf9";
sha256 = "sha256-1s3lVNTQDl+pUvbzSMsp3cOUSm6I4DzqJxnLMeeE3F4=";
2019-07-27 12:48:07 +01:00
};
nativeBuildInputs = [ pkg-config cmake llvm_11.dev ];
2019-07-27 12:48:07 +01:00
buildInputs = [ llvm_11 ];
2019-07-27 12:48:07 +01:00
checkInputs = [ lit ];
cmakeFlags = [
"-DLLVM_INCLUDE_TESTS=ON"
];
2019-07-27 12:48:07 +01:00
# FIXME: CMake tries to run "/llvm-lit" which of course doesn't exist
doCheck = false;
meta = with lib; {
homepage = "https://github.com/KhronosGroup/SPIRV-LLVM-Translator";
2019-07-27 12:48:07 +01:00
description = "A tool and a library for bi-directional translation between SPIR-V and LLVM IR";
license = licenses.ncsa;
platforms = platforms.all;
maintainers = with maintainers; [ gloaming ];
};
}