22 lines
554 B
Nix
Raw Normal View History

{ lib, python2 }:
2017-03-08 11:00:11 -06:00
python2.pkgs.buildPythonApplication rec {
2017-03-08 11:00:11 -06:00
pname = "lit";
2019-03-22 13:12:06 -05:00
version = "0.8.0";
2017-03-08 11:00:11 -06:00
src = python2.pkgs.fetchPypi {
2017-03-08 11:00:11 -06:00
inherit pname version;
2019-03-22 13:12:06 -05:00
sha256 = "0lwx1w1vk3a0pc237chwycl8qc6lwq8bzf13036wnmk74m9kwi7c";
2017-03-08 11:00:11 -06:00
};
# 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;
2017-03-08 11:00:11 -06:00
license = lib.licenses.ncsa;
maintainers = with lib.maintainers; [ dtzWill ];
};
}