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

22 lines
556 B
Nix
Raw Normal View History

{ lib, python2 }:
2017-03-08 17:00:11 +00:00
python2.pkgs.buildPythonApplication rec {
2017-03-08 17:00:11 +00:00
pname = "lit";
2020-03-31 05:47:15 +01:00
version = "0.9.0";
2017-03-08 17:00:11 +00:00
src = python2.pkgs.fetchPypi {
2017-03-08 17:00:11 +00:00
inherit pname version;
2020-03-31 05:47:15 +01:00
sha256 = "0vkqv0ijjkfg70j26cxqz75bpn2p78all5j5cw2gfcrn4c5aldf0";
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";
2020-03-31 05:47:15 +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 ];
};
}