blob: dc02bdbbb033e4c0e5f1344ae0d36ab217b00c49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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 ];
}
|