nixpkgs/pkgs/development/tools/misc/lit/default.nix

22 lines
563 B
Nix
Raw Normal View History

2018-11-29 05:14:34 -08:00
{ lib, python }:
2017-03-08 09:00:11 -08:00
2018-11-29 05:14:34 -08:00
python.pkgs.buildPythonApplication rec {
2017-03-08 09:00:11 -08:00
pname = "lit";
2018-11-29 05:14:34 -08:00
version = "0.7.0";
2017-03-08 09:00:11 -08:00
2018-11-29 05:14:34 -08:00
src = python.pkgs.fetchPypi {
2017-03-08 09:00:11 -08:00
inherit pname version;
2018-11-29 05:14:34 -08:00
sha256 = "13b32f1f1b3912bbf2bda91e9d1609abc92c0b4ce83276fe13a340516252e4b0";
2017-03-08 09:00:11 -08: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 09:00:11 -08:00
license = lib.licenses.ncsa;
maintainers = with lib.maintainers; [ dtzWill ];
};
}