2017-03-08 17:00:11 +00:00
|
|
|
{ lib, python2 }:
|
|
|
|
|
|
|
|
python2.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "lit";
|
2018-01-06 20:59:56 +00:00
|
|
|
version = "0.5.1";
|
2017-03-08 17:00:11 +00:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = python2.pkgs.fetchPypi {
|
|
|
|
inherit pname version;
|
2018-01-06 20:59:56 +00:00
|
|
|
sha256 = "0z651m3vkbk85y41larnsjxrszkbi58x9gzml3lb6ga7qwcrsg97";
|
2017-03-08 17:00:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Non-standard test suite. Needs custom checkPhase.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Portable tool for executing LLVM and Clang style test suites";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://llvm.org/docs/CommandGuide/lit.html;
|
2017-03-08 17:00:11 +00:00
|
|
|
license = lib.licenses.ncsa;
|
|
|
|
maintainers = with lib.maintainers; [ dtzWill ];
|
|
|
|
};
|
|
|
|
}
|