blob: 846b5fe627cca70fb281f82ff52bab51a0a7604a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package lit {
description = "a portable tool for executing LLVM and Clang style test suites";
website = "https://llvm.org/docs/CommandGuide/lit.html";
source = llvm-project;
exec = pip {
append = [ "llvm", "utils", "lit" ];
// already checked during llvm
check = nil;
};
inputs = [ python-setuptools ];
runtime = [ python ];
}
|