26 lines
599 B
Nix
26 lines
599 B
Nix
|
{ lib, python3 }:
|
||
|
|
||
|
python3.pkgs.buildPythonApplication rec {
|
||
|
pname = "lit";
|
||
|
version = "0.9.0";
|
||
|
|
||
|
src = python3.pkgs.fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "0vkqv0ijjkfg70j26cxqz75bpn2p78all5j5cw2gfcrn4c5aldf0";
|
||
|
};
|
||
|
|
||
|
passthru = {
|
||
|
python = python3;
|
||
|
};
|
||
|
|
||
|
# Non-standard test suite. Needs custom checkPhase.
|
||
|
doCheck = false;
|
||
|
|
||
|
meta = {
|
||
|
description = "Portable tool for executing LLVM and Clang style test suites";
|
||
|
homepage = "http://llvm.org/docs/CommandGuide/lit.html";
|
||
|
license = lib.licenses.ncsa;
|
||
|
maintainers = with lib.maintainers; [ dtzWill ];
|
||
|
};
|
||
|
}
|