blob: c4d60062537b60a9c4b2807a9a37d416a3e53440 (
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
skipCheck = true;
};
inputs = [ python-setuptools ];
runtime = [ python ];
}
|